设置 JFrame 的背景色

2022-08-31 15:18:29

如何设置 JFrame 的背景色?


答案 1

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

例:

myJFrame.getContentPane().setBackground( desiredColor );

答案 2

设置 JFrame 的背景色:

getContentPane().setBackground(Color.YELLOW);  //Whatever color

推荐