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

📄 testmybutton.java

📁 这是一个java工程
💻 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 + -