java中swing里的JFrame可不可以设置背景颜色
展开全部
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);
}
}
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);
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询