设置Swing的界面风格为系统风格

在main函数加入下面代码:

try {
    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (Exception e) {
    e.printStackTrace();
}

组件不能使static类型,否则不能应用风格~

你可能感兴趣的:(设置Swing的界面风格为系统风格)