我将 JPanel 设置为 JFrame 的 contentPane。
当我使用:
jPanel.setBackground(Color.WHITE);
不应用白色。
但是当我使用:
jFrame.setBackground(Color.WHITE);
它有效......我对这种行为感到惊讶。它应该是相反的,不是吗?
SSCCE:
这是一个SSCCE:
主类:
public class Main {
public static void main(String[] args) {
Window win = new Window();
}
}
窗口类:
import java.awt.Color;
import javax.swing.JFrame;
public class Window extends JFrame {
private Container mainContainer = new Container();
public Window(){
super();
this.setTitle("My Paint");
this.setSize(720, 576);
this.setLocationRelativeTo(null);
this.setResizable(true);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
mainContainer.setBackground(Color.WHITE); //Doesn't work whereas this.setBackground(Color.WHITE) works
this.setContentPane(mainContainer);
this.setVisible(true);
}
}
容器类:
import java.awt.Graphics;
import javax.swing.JPanel;
public class Container extends JPanel {
public Container() {
super();
}
public void paintComponent(Graphics g) {
}
}