jframeでボタンを二つ追加したのですが、
runするとbtnRedのボタンが機能しないのですが、
何故でしょうか?
Sourceをよく見ると、
追加した
bottun , text field, text area
の全てのコードが記述されていませんした。
何か設定等が悪いのでしょうか?
import java.awt.Color; private void btnNormalActionPerformed(java.awt.event.ActionEvent evt) { // TODO add your handling code here: String str = txtMessage.getText(); taOutput.append(str + "\n"); Color c = Color.WHITE; taOutput.setBackground(c); } private void btnRedActionPerformed(java.awt.event.ActionEvent evt) { // TODO add your handling code here: String str = txtMessage.getText(); taOutput.append(str + "\n"); Color c = Color.RED; taOutput.setBackground(c); }
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。