0

I'm using Netbeans IDE and I want to use the Insubstantial LAF in a Java application (http://insubstantial.posterous.com/). However, I have no idea how I would go about installing it. Does anybody have experience with this?

mKorbel
  • 108,320
  • 17
  • 126
  • 296
John Smith
  • 139
  • 3
  • 12

1 Answers1

4

Put its jar in the classpath, and, in your main method, before displaying any Swing component, add the following code:

UIManager.setLookAndFeel("fully.qualified.name.of.the.LookAndFeel");
JB Nizet
  • 633,450
  • 80
  • 1,108
  • 1,174