我用了.setBackground和.setForeground,都不行,颜色像橙子,改不了。
.setBackground
.setForeground
yquaqz181#
我认为这些价值观适合您
UIManager.put("ProgressBar.background", Color.ORANGE); UIManager.put("ProgressBar.foreground", Color.BLUE); UIManager.put("ProgressBar.selectionBackground", Color.RED); UIManager.put("ProgressBar.selectionForeground", Color.GREEN);
q35jwt9p2#
应将setStringPainted属性设置为true:
progressBar.setStringPainted(true); progressBar.setForeground(Color.blue); progressBar.setString("10%");
ebdffaop3#
您可以使用此选项:
UIManager.put( "nimbusOrange", new Color( 38, 139, 210 ) );
这对我很有效,只需要改变颜色,你可以使用Color.RED或者类似的
3条答案
按热度按时间yquaqz181#
我认为这些价值观适合您
q35jwt9p2#
应将setStringPainted属性设置为true:
ebdffaop3#
您可以使用此选项:
这对我很有效,只需要改变颜色,你可以使用Color.RED或者类似的