import javax.swing.*;
import java.awt.event.*;
public class SimpleGUI3 implements ActionListener {
JButton button;
private int numClick;
public static void main(String[] args) {
SimpleGUI3 gui = new SimpleGUI3();
gui.go();
}
public void go() {
JFrame frame = new JFrame();
button = new JButton("Click me.");
button.addActionListener(this);
frame.getContentPane().add(button);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(300, 300);
frame.setVisible(true);
}
@Override
public void actionPerformed(ActionEvent e) {
button.setLocation(100, 100); //This code do not change the button location if numClick++ (next row) used.
numClick++; //If comment numClick++ the button changes location on click. Why location doesn't changes if this row uncomment?
button.setText("Has been clicked " + numClick + " times.");
}
}
问题是: 为什么在代码中没有numClick ++的情况下单击位置会发生变化,以及如果numClick ++在代码中工作,为什么按钮ocation不会改变?
答案 0 :(得分:2)
当您更改numClick的值时,使用setText()
方法时按钮的文本也会更改。
当按钮的属性发生变化时,Swing会自动在组件上调用revalidate()
和repaint()
。
revalidate()
将调用布局管理器,布局管理器将根据布局管理器的规则将按钮的位置重置回(0,0),布局管理器默认为内容的BorderLayout框架的窗格。
底线是不要试图管理组件的位置或大小。这是布局管理员的工作。
此外,学习和使用Java命名约定。类名应以大写字母开头。
阅读Swing tutorial了解Swing基础知识。