本帖最后由 陈妙俊 于 2014-5-7 17:15 编辑
import java.awt.event.*;
import java.awt.*;
public class AwtDemo01 {
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 WindowClosd(WindowEvent e){
System.exit(0);
}
});
f.setVisible(true);
}
}
|
|