无法设置Java外观和感觉

时间:2014-09-11 11:19:49

标签: java swing netbeans look-and-feel

我已下载了java的外观。它是Quaqua。它以ZIP格式下载。我的问题是如何将这种外观添加到我的程序中?我正在使用NetBeans 8.我用Google搜索并发现不合适的结果。 所以告诉我正确的程序。 感谢。

1 个答案:

答案 0 :(得分:2)

您可以像任何其他lib一样将jar文件添加到类路径中,并且在显示您的JFrame之前,您可以像这样设置lnf:

UIManager.setLookAndFeel(quaqualnf);
...
JFrame frame = ...

如果您不愿意查看开发指南,那么您已经找到了这个:

public class MyApplication {
     public static void main(String[] args) {

         // set system properties here that affect Quaqua
         // for example the default layout policy for tabbed
         // panes:
         System.setProperty(
            "Quaqua.tabLayoutPolicy","wrap"

         );

         // set the Quaqua Look and Feel in the UIManager
         try {
              UIManager.setLookAndFeel(
                  ch.randelshofer.quaqua.QuaquaManager.getLookAndFeel();
              );
         // set UI manager properties here that affect Quaqua
         ...
         } catch (Exception e) {
             // take an appropriate action here
             ...
         }
         // insert your application initialization code here
         ...
     }
}