//代码如下:
******************************************************
//ButtonTest.java
import java.awt.FlowLayout;
import javax.swing.JButton;
import javax.swing.JFrame;
public class ButtonTest extends JFrame {
public ButtonTest() {
this.setLayout(new FlowLayout());
for (int i = 1; i <= 11; i++) {
this.add(new JButton("button" + i));
}
this.setBounds(200, 100, 300, 200);
this.setVisible(true);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public static void main(String[] args) {
ButtonTest bt = new ButtonTest();
}
}
******************************************************
运行界面如下:
1、在构造函数里面 this.setSize();
2、如果你有myeclipse或者其他可视化开发工具则里面有可拖控件.
不然可以在构造函数里面
Button button1=new Button("");
如果你有加入panel那就this.panel.有个add控件的方法(太久没碰忘了,是Co开头的),把button1加进去,再设置一下布局