如何改变JProgressbar“串画”的颜色?

时间:2014-08-19 12:27:19

标签: java swing colors jprogressbar

我的java代码中有一个JProgressBar,我想改变它的#34;字符串画的颜色" (字符串显示JProgressBar上的百分比),所以在java中是否有任何方法可以更改"字符串绘制的颜色" JProgressBar ???

1 个答案:

答案 0 :(得分:3)

UIManager.put("ProgressBar.background", Color.orange);
UIManager.put("ProgressBar.foreground", Color.blue);
UIManager.put("ProgressBar.selectionBackground", Color.red);
UIManager.put("ProgressBar.selectionForeground", Color.green);