Вопрос

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

Это было полезно?

Решение

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

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top