标签: java swing colors jbutton
我有一个JButton对象:JButton button;
JButton button
我使用以下内容添加文字:button.setText("XYZ");
button.setText("XYZ");
但是,我想为文本设置特定的颜色。我该怎么做?
答案 0 :(得分:3)
button.setForeground( Color.RED );
所有Swing组件都支持此方法。