📄 testmybutton.java
字号:
/**
* @(#)TestMyButton.java
*
* TestMyButton application
*
* @author
* @version 1.00 2009/2/15
*/
import java.awt.*;
import java.awt.event.*;
public class TestMyButton extends Frame {
public TestMyButton (){
addWindowListener(new WindowAdapter(){
public void windowClosing(WindowEvent e){
dispose();
System.exit();
}
});
}
public static void main(String[] args) {
System.out.println("Staring TestMyButton...");
TestMyButton mainFrame = new TestMyButton();
mainFrame.setSize(400,400);
mainFrame.setTitle("TestMyButton");
mainFrame.setVisible(true);
// TODO, add your application code
//System.out.println("Hello World!");
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -