web-dev-qa-db-ja.com

JProgressBarの色を変更するには?

使用した.setBackgroundおよび.setForegroundそして、それらは機能しませんでした。色はオレンジのようで、変更できません。

17
Ali Bassam

これらの値はあなたにぴったりだと思います

UIManager.put("ProgressBar.background", Color.ORANGE);
UIManager.put("ProgressBar.foreground", Color.BLUE);
UIManager.put("ProgressBar.selectionBackground", Color.RED);
UIManager.put("ProgressBar.selectionForeground", Color.GREEN);
23
mKorbel

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

progressBar.setStringPainted(true);
progressBar.setForeground(Color.blue);
progressBar.setString("10%");
18
Alexey