java怎么修改按钮的大小????

2024-11-21 20:55:10
推荐回答(5个)
回答1:

JFrame a = new JFrame();
a.setVisible(true);
a.setTitle("NUNU");
a.setSize(420,320);
a.setLocation(200,200);
a.setResizable(true);
a.setLayout(null);
//
JButton b = new JButton("正方形自动运算");
a.add(b);
b.setBounds(0, 0, 100, 26);
a.setVisible(true);

回答2:

a.setLayout(null);这句话加上去之后才能使用setBounds进行定位

回答3:

新建一个jpanel button放在jpanel中,将jpanel加入

回答4:

加一句,a.setLayout(null);

回答5:

a.setLayout(null);