Tagged Questions
2
votes
1answer
60 views
Color in JProgressBar
I just wanted to use the Windows L&F in a JFrame. Now while using a progress bar, the default color is green, similar to the one used in other windows functions like copying of files, etc. ...
5
votes
2answers
115 views
JProgressBar: low values will not be displayed
I tried out the function of the JProgressBar in Java. But there is a problem I couldn't solve:
When I set the minimum to zero, the maximum value to 100 and the current value to 6 then nothing will be ...
1
vote
1answer
121 views
Overriding LookAndFeel
Hello I am trying to change the colors of my swing progress bar in java.
Initially I tried using the following code:
UIManager.put("ProgressBar.selectionBackground", Color.black);
...
0
votes
1answer
184 views
Working with progressbar [duplicate]
Possible Duplicate:
Nice looking progress bar in java
I use setBackground and setForeground to set the color of a JProgressBar but they didn't work, the color remain Orange. I can't change ...
2
votes
1answer
511 views
Can't change JProgressBar color in Mac OS look and feel
I know this question has been answered before, but it's just not working for me. I followed the instructions from here: How to change JProgressBar color?
import javax.swing.*;
import java.awt.*;
...
2
votes
1answer
1k views
How to change the color of a single JProgressBar in Nimbus?
I'm trying to change the color of a single JProgressBar in Nimbus LAF (Look And Feel). This solution does work, but it changes the colors of ALL JProgressBars :/
UIDefaults defaults = ...
2
votes
4answers
2k views
Changing Swing progress bar look and feel
I keep trying to chang the UIManager to make these stupid looking green squares go away. how do i change the look and feel of this to the user? Is it system dependent? Someone else who was ...