- public class AwtDemo {
-
- public static void main(String[] args) {
- Frame f = new Frame("my awt");
- f.setSize(500, 400);//设置窗体的大小
- f.setLocation(300,200);//设置窗体的显示位置
- f.setLayout(new FlowLayout());//设置布局方式。
-
- Button b = new Button("我是一个按钮");//创建按钮
- f.add(b); //添加按钮
- //f.addWindowListener(new MyWin());
- f.addWindowListener(new WindowAdapter()
- {
- //关闭动作,WindowEvent e 相当于try catch中的Exception,用于捕捉窗体事件,比如这个e捕捉到了关闭事件
- //函数内为捕捉到事件后程序产生的动作。
- public void windowClosing(WindowEvent e)
- {
- System.out.println("我关");
- System.exit(0);
- }
-
-
- }
- );
- f.setVisible(true);//窗体设置为显示
- }
- }
复制代码 |