0

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();
}
4

2 に答える 2

1

そんな悩みを抱えている人がいたら…

次のように入力します: button.requestFocusInWindow(); // メソッドの最後の行で...

そのように:

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();
button.requestFocusInWindow(); 

}

于 2013-09-16T23:11:03.413 に答える