1

最近我为登录系统制作了一个桌面应用程序,如果我更改任何代码,我总是运行该程序以确保该代码是否运行良好,无论如何,当我运行该程序时,它总是显示为高级设计,我不知道你怎么称呼它。让图像解释一下。

基本设计

http://www5.0zz0.com/2013/04/10/14/418370274.jpg

先进的设计

http://www5.0zz0.com/2013/04/10/14/868362737.jpg

4

1 回答 1

1

您的基本设计基本上是 Metal Look And Field 而高级设计是 Nimbus Look And Field 所以在创建 JFrame 类的对象之前使用以下代码。

try {
            for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
                if ("Nimbus".equals(info.getName())) {
                    javax.swing.UIManager.setLookAndFeel(info.getClassName());
                    break;
                }
            }
        } catch (ClassNotFoundException ex) {
            java.util.logging.Logger.getLogger(MainFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (InstantiationException ex) {
            java.util.logging.Logger.getLogger(MainFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (IllegalAccessException ex) {
            java.util.logging.Logger.getLogger(MainFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (javax.swing.UnsupportedLookAndFeelException ex) {
            java.util.logging.Logger.getLogger(MainFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        }

此代码会将任何外观和字段更改为 Nimbus 外观和字段

于 2013-04-10T14:59:39.440 回答