Getting and Setting a Look and Feel

To change the look and feel, you need to know the class name of the new look and feel. This example installs the Windows look and feel. See also Determining the Available Look and Feels.
// Get the currently installed look and feel LookAndFeel lf = UIManager.getLookAndFeel(); // Install a different look and feel; specifically, the Windows look and feel try { UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel"); } catch (InstantiationException e) { } catch (ClassNotFoundException e) { } catch (UnsupportedLookAndFeelException e) { } catch (IllegalAccessException e) { }

Comments

20 May 2010 - 10:49pm by pppp (not verified)

nice

Post a comment

More information about formatting options

CAPTCHA
This question is for testing whether you are a human visitor and to prevent automated spam submissions.
Image CAPTCHA
Enter the characters shown in the image. Ignore spaces and be careful about upper and lower case.