0
我有一個JButton對象:JButton button
;更改JButton對象上文本的顏色
我使用文本添加到它:button.setText("XYZ");
不過,我想設置一個特定顏色的文字。我該怎麼做?
我有一個JButton對象:JButton button
;更改JButton對象上文本的顏色
我使用文本添加到它:button.setText("XYZ");
不過,我想設置一個特定顏色的文字。我該怎麼做?
button.setForeground(Color.RED);
所有的Swing組件都支持這種方法。
非常感謝。你似乎是Swing的專家。 – Boult
@Boult如果這個答案有幫助,你應該考慮接受它。 http://meta.stackexchange.com/questions/5234/how-does-accepting-an-answer-work – Radiodef