⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cframe.java

📁 java开源邮件服务器 smtp pop3
💻 JAVA
字号:
import java.awt.*;
import java.awt.event.*;
import java.util.*;

public class CFrame extends Frame implements WindowListener
{
    public CFrame()
    {
        super();

        setIconImage( Toolkit.getDefaultToolkit().getImage( "dixie.gif" ) );
        this.addWindowListener( this );
    }

    public CFrame( String iconName )
    {
        super();

        setIconImage( Toolkit.getDefaultToolkit().getImage( iconName ) );
        this.addWindowListener( this );
    }

    public void center()
    {
        Dimension screenDim;
        Dimension splashDim;
        int hpos;
        int wpos;

        splashDim = this.getSize();
        screenDim = this.getToolkit().getScreenSize();

        hpos = ( screenDim.height - splashDim.height ) / 2;
        wpos = ( screenDim.width - splashDim.width ) / 2;

        this.setLocation( wpos, hpos );
    }

    public void windowOpened( WindowEvent e ) { }
    public void windowClosed( WindowEvent e ) { }
    public void windowIconified( WindowEvent e ) { }
    public void windowDeiconified( WindowEvent e ) { }
    public void windowActivated( WindowEvent e ) { }
    public void windowDeactivated( WindowEvent e ) { }
    public void windowClosing( WindowEvent e )
    {
        this.setVisible( false );
        this.dispose();
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -