java中swing里的JFrame可不可以设置背景颜色

2025-01-05 16:38:54
推荐回答(3个)
回答1:

JFrame设置背景色方法如下:
package com.tools;
import java.awt.Color;
import javax.swing.JFrame;
public class Test extends JFrame
{
public static void main(String[] args)
{
//执行入口
new Test();
}

public Test()
{
this.setSize(400,300);
this.setLocation(400,300);
this.setBackground(Color.blue);
this.getContentPane().setBackground(Color.red);
//如果改为true那么就变成了红色。
this.getContentPane().setVisible(false);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setVisible(true);
}
}

回答2:

setBackground
JFrame.getContentPane().setBackground(Color.BLACK);

回答3:

可以