18

私は使用.setBackground.setForegroundましたが、機能しませんでした。色はオレンジのようで、変更できません。

4

2 に答える 2

24

これらの価値観はあなたに合っていると思います

UIManager.put("ProgressBar.background", Color.ORANGE);
UIManager.put("ProgressBar.foreground", Color.BLUE);
UIManager.put("ProgressBar.selectionBackground", Color.RED);
UIManager.put("ProgressBar.selectionForeground", Color.GREEN);
于 2012-05-27T12:46:46.670 に答える
20

setStringPainted プロパティを true に設定する必要があります。

progressBar.setStringPainted(true);
progressBar.setForeground(Color.blue);
progressBar.setString("10%");
于 2012-06-10T10:20:58.907 に答える