Pergunta

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 =)

Foi útil?

Solução

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

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top