Pregunta

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

¿Fue útil?

Solución

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 bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top