3

Is there any library I can use to create shiny user interfaces in Java?

e.g. The Intel Graphics & Media Control Panel is written in .Net.

Intel Graphics & Media Control Panel

I want to know how to create such UI in Java.

anilmwr
  • 477
  • 9
  • 16

2 Answers2

4

Well you can use and customize your UI with Swing. Nowdays there is also JavaFx 2.0.

Also there are a lot of extensions like those from SwingLabs,JGoodies,Jide,Glazed List and the amazing Substance look& feel ,Steel Series etc.

Just google for this terms you get a lot of useful links.

http://download.oracle.com/javafx/

http://www.jgoodies.com/

http://swingx.java.net/

http://java.net/projects/substance/

http://harmoniccode.blogspot.com/

Be aware is not easy and out of the box functionality but you can do anything.

Cris
  • 4,947
  • 6
  • 44
  • 73
1

By default, Swing user interfaces use a look and feel called 'Metal'.

You could try making your own look and feel to accomplish something similar.

dteoh
  • 5,794
  • 3
  • 27
  • 35