JPanel にボタンが表示されないのは、非表示ボタンにマウスを置いたときだけです...
それは私のコードではありません。したがって、私のコードは問題ないようですが、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();
}