Java 版 (精华区)
Q: 如何改变java程序的外观风格(LookAndFeel)?
A: 程序启动的时候,设定默认的风格:
try {
UIManager.setLookAndFeel("javax.swing.plaf.metal.
MetalLookAndFeel");
//SwingUtilities.updateComponentTreeUI(this);
}catch(Exception es) {
es.printStackTrace();
}
在程序运行过程中动态的改变风格,需要把上面的注释解开。
java提供三种风格可供选择:
javax.swing.plaf.metal.MetalLookAndFeel
com.sun.java.swing.plaf.windows.WindowsLookAndFeel
com.sun.java.swing.plaf.motif.MotifLookAndFeel
jdk1.4.2b新增加的一种风格:
com.sun.java.swing.plaf.gtk.GTKLookAndFeel
通过这条语句可以设定风格为当前系统的风格:
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
Powered by KBS BBS 2.0 (http://dev.kcn.cn)
页面执行时间:3.437毫秒