gpt4 book ai didi

java - 如何在java中更改鼠标进入和鼠标退出时的字体颜色

转载 作者:行者123 更新时间:2023-12-02 07:41:56 25 4
gpt4 key购买 nike

我正在做一个 Swing 应用程序。我想更改 MouseEnteredMouseExited 上按钮的文本颜色。

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

这就是我改变背景颜色的方式。如何更改按钮的文本颜色。

提前致谢。

最佳答案

您可以使用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);
}

关于java - 如何在java中更改鼠标进入和鼠标退出时的字体颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11464827/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com