tags:

views:

25

answers:

1

Hello,

I'm just wondering if there is any way to customize Java application's title bar, I don't mean app name in title bar of course, but total customization, that can be seen in some modern non Java applications which utilize long years wasted space with three buttons in the corner.

Any leads?

A: 

Have a look at JFrame.setDefaultLookAndFeelDecorated() and the JRootPane with RootPaneUI classes. You won't be able to change the system-provided title bar, but you might be able to tweak one of the Java custom UI's implementations.

mkadunc