。?。

public class a{
JFrame f;
Box box;
JButton b1,b2,b3;
public a(){
f=new JFrame ();
box= Box. creatVerticalBox();
//box =new Box(BoxLayout.Y_AXIS);
b1=new JButton ("按钮1");
b2=new JButton ("按钮2");
b3=new JButton ("按钮3");
box.add(b1);
box.add(b2);
box.add(b3);
f.add(box);
f.setSize(200,200);
f.setVisible(true);
}
public static void main(String args[]) {
new a();
}
}

上一篇:天天爱跑步


下一篇:COMP 5416 Assignment