您如何设置JFrame的背景颜色?

最佳答案

检索框架的内容窗格,并使用从setBackground()继承的Component方法更改颜色。

例:

myJFrame.getContentPane().setBackground( desiredColor );

09-11 20:37