`
ljl_xyf
  • 浏览: 618185 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

swing下 改变窗口样式为windows风格(swing控件样式不美观解决方案)

    博客分类:
  • java
阅读更多

在windows环境下可以用下面两种方法使窗口显示windows风格窗口!

            UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
            UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");


public static void main(String[] args) {
         try
         {
            UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
            //UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");


           }catch(Exception e)
           {}
           new MyFrame();
}

 

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics