本帖最后由 魑_魅 于 2012-2-4 10:54 编辑
- import java.awt.*;
- import java.awt.event.*;
- 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 WindowAdapter()
- {
- public void WindowClosing(WindowEvent e)
- {
- System.out.println("关闭系统");
- System.exit(0);
- }
- });
- f.setVisible(true);
- }
- }
复制代码 |