1

i have a desktop GUI in swing , i want to show status of user storage used in the GUI, currently i am using JProgressBar, which is not much attractive, It seems like a simple progress bar. Please suggest some attractive way to do.

Asghar
  • 2,336
  • 8
  • 46
  • 79

1 Answers1

2

If you are looking for more attractive design. I could suggest you a couple of things:

1-Have a look at javaFX progress bars , you might find something interesting http://download.oracle.com/javafx/1.3/tutorials/UIControls/progress.html

2-If you use the standar progress bar from the java tutorial maybe you could try to edit it yourself. Have a look at this link

Example of self customization:

UIManager.put("ProgressBar.background",Color.BLUE); 
javing
  • 12,307
  • 35
  • 138
  • 211