更改netbeans中应用程序的默认外观

时间:2013-05-23 13:15:45

标签: java netbeans skin

我正在使用Netbeans开发Java应用程序,我想更改JFrame和按钮的默认外观......

我用Google搜索,我找不到任何东西。

在Visual Studio中,我使用的是SkinCrafter

是否有任何程序或插件允许我更改Netbeans中应用程序的默认外观?

1 个答案:

答案 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
}

Oracle site about

用于已安装的皮肤:

    for( LookAndFeelInfo info : UIManager.getInstalledLookAndFeels() ) {
        System.out.println( info.getName() );
    }