设置JFrame的背景色
最近在学Swing 遇到这个问题:
public class Test
{
public static void mian(String[] args)
{
JFrame jf= new JFrame();
jf.setBackgroud(Color.red);// 问题就出在这!!!
setVisible(true);
jf.setDefaultoperation(1);
jf.setsize(100,100);
jf.setLocation(100,100);
}
程序运行时,出现的JFrame一闪一下,本来的背景色(Color.red)变为默认的颜色。
这是怎么回事。