UIManager.put("jb.selectionForeground", new ColorUIResource(Color.BLACK));
UIManager.put("jb.selectionBackground", new ColorUIResource(Color.BLACK));
我尝试过这种方法,但它没有用。
答案 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?
乐意帮助!