如何在intellij idea中更改swing应用程序的外观

How to change look and feel of swing application in intellij idea

我是一名学生,我正在为我的应用程序使用idea。 我正在研究 swing form,我已经完成了所有的事情,但无法改变我的应用程序的外观。

我正在使用 intellij idea 社区版,谁能告诉我如何更改 swing 应用程序的外观?

要在 Java 中更改外观,只需在创建 GUI 之前将其添加到您的主要方法中即可。

try {
    UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel"); //Windows Look and feel     
} catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException e) {            
    e3.printStackTrace();
}