可以对JFrame的内容窗格使用如下语句设置背景颜色吗?
getContentPane.setBackground(Color.red);
麻烦高手指点下,谢谢
可以对JFrame的内容窗格使用如下语句设置背景颜色吗?
getContentPane.setBackground(Color.red);
麻烦高手指点下,谢谢
可以加啊,我试过了,你是不是写了别的什么容器放到JFrame中挡住了背景呢?
这是我的代码:
public class Main {
JFrame jf = new JFrame();
public Main() {
jf.setSize(200, 200);
jf.getContentPane().setBackground(// <editor-fold defaultstate="collapsed" desc="comment">
Color.red// </editor-fold>
);
jf.setVisible(true);
}
public static void main(String[] args) {
System.out.println("helloworld");
Main main = new Main();
}
}