本帖最后由 侯丛政 于 2013-2-19 13:17 编辑
public static void main(String[] args){
// 创建窗体
Frame f = new Frame();
// 设置属性
f.setTitle("nakeno");
f.setSize(400, 300);
f.setLocation(200, 100);
// 设置布局方式
f.setLayout(new FlowLayout());
// 创建按钮
Button bu = new Button("AN");
bu.setSize(20,20); // 这步我修改了不同的参数值后执行的时候按钮大小没有变化, 为什么呢?
// 把按钮添加到窗体上
f.add(bu);
// 注册组件
f.addWindowListener(new WindowAdapter(){
public void windowClosing(WindowEvent e){
System.exit(0);
}
});
// 给按钮添加事件
bu.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
System.out.println("Welcome!");
}
});
// 设置可见
f.setVisible(true);
}
|