JFrame更改边框颜色

时间:2014-11-12 12:10:46

标签: java swing methods jframe

嘿大家我需要一些帮助 我想从我的JFrame中更改颜色 我知道我可以用“setUndecorated(true)”删除边框 但现在我想自定义这个边框。 有没有任何方法来自定义我的JFrame边框? 谢谢你的帮助。

1 个答案:

答案 0 :(得分:2)

您可以使用LAF:

try {
        // Set cross-platform Java L&F (also called "Metal")
    UIManager.setLookAndFeel(
        UIManager.getCrossPlatformLookAndFeelClassName());
} 
catch (UnsupportedLookAndFeelException e) {
   // handle exception
}
catch (ClassNotFoundException e) {
   // handle exception
}
catch (InstantiationException e) {
   // handle exception
}
catch (IllegalAccessException e) {
   // handle exception
}

这将使用您的默认外观和感觉。 您可以从网上下载自定义lafs