Как изменить цвет JProgressBar?
Я использовал .setBackground
и .setForeground
, и они не работали, цвет как Orange, не может его изменить.
Ответы
Ответ 1
Я думаю, что эти ценности подходят вам.
UIManager.put("ProgressBar.background", Color.ORANGE);
UIManager.put("ProgressBar.foreground", Color.BLUE);
UIManager.put("ProgressBar.selectionBackground", Color.RED);
UIManager.put("ProgressBar.selectionForeground", Color.GREEN);
Ответ 2
Вы должны установить для свойства setStringPainted значение true:
progressBar.setStringPainted(true);
progressBar.setForeground(Color.blue);
progressBar.setString("10%");