如何在Java GUI编程中获得Windows本机外观?

我是Java编程新手,想知道是否可以在Java GUI应用程序中获得Windows本机外观。 显然Swing不会工作。

使用以下内容:

UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()); 

阅读UIManager以及如何设置外观以获取更多信息。

尝试这个….

语法是:

UIManager.setLookAndFeel(PLAF); (Pluggable Look and Feel)

所以, 你必须包括下面的3行。

 UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel"); SwingUtilities.updateComponentTreeUI(frame); updateComponentTreeUI(frame); 

SwingUtilities.updateComponentTreeUI(frame)用于刷新更改后的帧。

试试这个代码:

 javax.swing.UIManager.setLookAndFeel("Windows")