java中的JFrame怎么设置背景色
时间: 2024-02-15 14:04:23 浏览: 111
JS修改iframe页面背景颜色的方法
要设置JFrame的背景色,可以使用JFrame的setBackground(Color c)方法。例如,在以下代码中,我们将JFrame的背景色设置为红色:
```
import javax.swing.*;
import java.awt.*;
public class MyFrame extends JFrame {
public MyFrame() {
this.setSize(400, 400);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.getContentPane().setBackground(Color.RED);
this.setVisible(true);
}
public static void main(String[] args) {
new MyFrame();
}
}
```
在这个示例中,我们创建了一个继承自JFrame的类MyFrame,并在构造函数中调用了setBackground(Color c)方法,将JFrame的背景色设置为红色。注意,我们使用getContentPane()方法来获取JFrame的内容面板,并在其上设置背景色。最后,我们将JFrame设置为可见。
阅读全文