JInternalFrame如何设置为windows外观??

解决方案 »

  1.   

    简单点设置look&feel,
    UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
    UIManager.updateUI(yourInternalFrame);
      

  2.   

    JInternalFrame的外观取决于容器(Desktopwidows)
    楼上的没有尝试
    我的就是配置了容器的效果
      

  3.   

    static {
        try {
            UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
          //UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());
        }
        catch (Exception e) {
        }
      }