这些按钮没有出现在我的 JPanel 中,只有当我将鼠标移到 Invisible Button 上时...
那不是我的代码。所以,我的代码似乎没问题,但没有出现在我的 JPanel 中......我只是试图重新验证并重新绘制 JPanel,但什么也没发生......
for (int i; i < 5; i++) {
JButton button = new JButton();
button.setText("" + i);
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ae) {
System.out.print("\n Test: " + ae.getActionCommand());
}
});
button.setSize(60,20);
button.setLocation(100, 140);
button.setVisible(true);
this.add(button);
this.revalidate();
this.repaint();
}