我正在使用Netbeans
开发Java应用程序,我想更改JFrame
和按钮的默认外观......
我用Google搜索,我找不到任何东西。
在Visual Studio中,我使用的是SkinCrafter
。
是否有任何程序或插件允许我更改Netbeans
中应用程序的默认外观?
答案 0 :(得分:0)
try {
// Set System L&F
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
// or UIManager.setLookAndFeel("javax.swing.plaf.metal.MetalLookAndFeel");
// or UIManager.setLookAndFeel("com.sun.java.swing.plaf.motif.MotifLookAndFeel")
}
catch (Exception e) {
// handle exception
}
用于已安装的皮肤:
for( LookAndFeelInfo info : UIManager.getInstalledLookAndFeels() ) {
System.out.println( info.getName() );
}