Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make GUI java beautiful? [closed]

I am struggle to make a beautiful GUI in java. As you may know the default look and feel are not attractive that's why I would like to ask if there are existing mechanism or tools to do it thank.

Edited:

I want to develop chart application.

like image 805
sayvortana Avatar asked Jun 30 '12 13:06

sayvortana


People also ask

How do I close my GUI Swing?

4) There are two options to close the Java Swing application one is EXIT_ON_CLOSE and the other is DISPOSE_ON_CLOSE. 5) DISPOSE_ON_CLOSE doesn't terminate JVM if any user thread is running. 6) You can also implement a window listener to implement your closing mechanism by using System. exit() in the Swing application.

Is Java Swing good for GUI?

Swing in Java is a lightweight GUI toolkit which has a wide variety of widgets for building optimized window based applications. It is a part of the JFC( Java Foundation Classes). It is build on top of the AWT API and entirely written in java. It is platform independent unlike AWT and has lightweight components.


1 Answers

It depends on what framework you're using. If you're using Swing you can use Java Look and Feel. There are some really nice one's out there but here's a link I found from a simple Google search. I like the Sea Glass one :) This also seems pretty informative and might help you out a little

like image 124
Peter Avatar answered Oct 13 '22 12:10

Peter