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