15

我正在写一个简单的扫雷游戏,它现在可以工作了,但我正在研究一些漂亮的细节,比如让每个数字都变成不同的颜色。

当我尝试在JButton. 我可以很容易地更改文本和背景,但不能专门更改文本颜色。

一直搞砸的部分是:

total = Integer.toString(count);
jb.setText(total);              
if(count == 1)
    jb.setTextColor(Color.blue);
if(count == 2)
    jb.setTextColor(Color.green);
if(count == 3)
    jb.setTextColor(Color.red);

由于某种原因,我的错误是:

MS.java:109: error: cannot find symbol
                    jb.setTextColor(Color.blue);
                      ^
  symbol:   method setTextColor(Color)
  location: variable jb of type JButton
MS.java:112: error: cannot find symbol
                    jb.setTextColor(Color.green);
                      ^
  symbol:   method setTextColor(Color)
  location: variable jb of type JButton
MS.java:114: error: cannot find symbol
                    jb.setTextColor(Color.red);
                      ^
  symbol:   method setTextColor(Color)
  location: variable jb of type JButton
3 errors
Process javac exited with code 1

每当我尝试编译时都会发生这种情况,但是当我将其更改为说setBackgroundColor而不是setTextColor它时,它就可以正常工作。

4

1 回答 1

40

setTextColor对于 JButton 是未定义的。要设置JButton文本颜色,您可以使用setForeground.

button.setForeground(Color.RED);
于 2013-03-13T18:21:53.970 回答