How to change JProgressBar color?

后端 未结 2 1779
暗喜
暗喜 2020-11-28 15:10

I Used .setBackground and .setForeground and they didn\'t work, the color is like Orange, can\'t change it.

2条回答
  •  星月不相逢
    2020-11-28 15:32

    You should set the setStringPainted property to true:

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

提交回复
热议问题