I would like to set ALL of JProgressBar in my Swing application in Nimbus style, while the rest is Windows, Metal, Quauqa, whatever.
How can I do this in Java?
I would like to set ALL of JProgressBar in my Swing application in Nimbus style, while the rest is Windows, Metal, Quauqa, whatever.
How can I do this in Java?
Call comp.setUI(...)
and comp.updateUI()
to change the UI of single components.