我正在做一个Swing应用程序。我想在 MouseEntered 和 MouseExited 上更改按钮的文本颜色。
private void jButton2MouseEntered(java.awt.event.MouseEvent evt) {
this.jButton2.setBackground(Color.red);
}
private void jButton2MouseExited(java.awt.event.MouseEvent evt) {
this.jButton2.setBackground(Color.lightGray);
}
这就是我如何改变背景颜色。如何更改按钮的文本颜色。
先谢谢。
答案 0 :(得分:2)
您可以使用Button.setForeground(Color.red);
方法设置新的字体颜色。
private void jButton2MouseEntered(java.awt.event.MouseEvent evt) {
this.jButton2.setBackground(Color.red);
this.Button.setForeground(Color.red);
}
private void jButton2MouseExited(java.awt.event.MouseEvent evt) {
this.jButton2.setBackground(Color.lightGray);
this.Button.setForeground(Color.lightGray);
}