Question

my question is: There is a way to make GUI in Java like the one from Visual Studio Installer? Like this: VS GUI STYLE

Being more detailed... a GUI without the regular windows borders, with plain color, without the "3D" feel. Well, the linked image summarize the idea well.

Thanks for the attention and sorry for my poor english =)

Was it helpful?

Solution

If you're talking Swing, then yes.. use:

setUndecorated(true);

on your JFrame.

http://docs.oracle.com/javase/6/docs/api/java/awt/Frame.html#setUndecorated%28boolean%29

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top