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