ユーザーがクリックしたボタンの文字を印刷して、そのボタンを無効にするにはどうすればよいですか
forループを使用して各文字のボタンを生成します
} for (int i = 65; i <= 90; i++) {
btnLetters = new JButton(" " + (char) i);
letterJPanel.add(btnLetters);
letterJPanel.setLayout(new FlowLayout());
btnLetters.addActionListener(this);
}
ボタンをクリックすると、文字が印刷され、ボタンが無効になります。
public void actionPerformed(ActionEvent ae) {
if (ae.getSource() == btnLetters) {
}
}