|
How to manipulate the Look and Feel of the applications |
|
|
This Java tips illustrates a method of 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. This is very useful for developers to create
applications where users can customize the applications according to their preference.
// 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) {
}
|
Related Tips
|
Page 1 of 0 ( 0 comments )
You can share your information about this topic using the form below!
Please do not post your questions with this form! Thanks.