这个压缩包里的都是超级经典的java例子
源代码在线查看: lookfeel.htm
Getting and Setting a Look and Feel (Java Developers Almanac Example)
The Java Developers Almanac 1.4
Order this book from Amazon.
google_ad_client = "pub-6001183370374757";
google_ad_width = 120;
google_ad_height = 600;
google_ad_format = "120x600_as";
google_ad_channel = "4777242811";
google_ad_type = "text_image";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "6666CC";
google_color_url = "6666CC";
google_color_text = "000000";
//-->
Home
>
List of Packages
>
javax.swing
[141 examples]
>
Look and Feel
[4 examples]
e867. 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 e866 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) {
}
Related Examples
e866.
Determining the Available Look and Feels
e868.
Getting and Setting a Native Look and Feel
e869.
Setting the Default Look and Feel Using a System Property or Property File
See also:
Actions
JButton
JCheckBox
JComboBox
JDesktop and JInternalFrame
JFrame, JWindow, JDialog
JLabel
JList
JProgressBar
JRadioButton
JScrollPane
JSlider
JSpinner
JSplitPane
JTabbedPane
JToolBar
Keystrokes and Input Maps
Layout
Menus
Progress Monitor
The Screen
Tool Tips
UI Default Values
© 2002 Addison-Wesley.