Is there a way to have the Nimbus Look&Feel render its own windows decorations for a top level JFrame
? I\'ve been digging through the Internet, and I\'m sta
I've done this with JGoodies Looks in the past. I don't know if Nimbus supports it or not.
It's not only the LAF, however, it is an option you must programmatically turn on for JFrame (and JDialog if you want).
JFrame.setDefaultLookAndFeelDecorated( true );
JDialog.setDefaultLookAndFeelDecorated( true );
See the API Docs