如何更改JProgressBar文本颜色

时间:2015-09-06 11:13:08

标签: java

     UIManager.put("jb.selectionForeground", new ColorUIResource(Color.BLACK));
     UIManager.put("jb.selectionBackground", new ColorUIResource(Color.BLACK));

我尝试过这种方法,但它没有用。

1 个答案:

答案 0 :(得分:0)

您可以使用以下方法轻松设置JProgressBar文本颜色: -

UIManager.put("ProgressBar.selectionBackground", Color.RED);//Red
UIManager.put("ProgressBar.selectionForeground", Color.GREEN);//Green 
UIManager.put("ProgressBar.background", Color.ORANGE);//Gives Orange
UIManager.put("ProgressBar.foreground", Color.BLUE);//Gives Blue

详情请参阅:How to change JProgressBar color?

乐意帮助!