无法更改JFrame或JPanel的背景颜色

时间:2016-10-14 06:58:19

标签: java swing colors jpanel

我无法让JPanel改变颜色。我也无法让JFrame改变颜色。我已经在网上看了......我还有另一个程序,它有几乎相同的代码来设置JPanel和JFrame。我无法让它发挥作用。

这是我的主要方法:

public static void main(String[] args){
    JFrame frame = new JFrame("title");
    frame.getContentPane().setBackground(Color.WHITE);
    Drawing drawing = new Drawing(2);
    drawing.setBackground(Color.CYAN);
    frame.add(drawing);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setSize(500, 500);
    ...

编辑:后来在我的主要方法中

    frame.setLocationRelativeTo(null);
    frame.setVisible(true);

以下是JPanel的构造函数:

public class Drawing extends JPanel {
    // instance variables
    public Drawing(int n){
        setOpaque(true);
        setPreferredSize(new Dimension(300, 300));
        setBackground(Color.PINK);
        ...

背景颜色保持默认灰色。

1 个答案:

答案 0 :(得分:2)

使用eclipse制作快速窗口构建器应用程序并设置颜色没有问题。

我注意到的一些事情是frame.add(drawing)而非frame.getContentPane().add(drawing) 您也永远不会使用frame.setVisible(true)设置框架。

以下是我使用的代码:

public static void main(String[] args) {
    EventQueue.invokeLater(new Runnable() {
        public void run() {
            try {
                MainWindow window = new MainWindow();
                window.frame.setVisible(true);
            }
            catch (Exception e) {
                e.printStackTrace();
            }
        }
    });
}

/**
 * Create the application.
 */
public MainWindow() {
    initialize();
}

/**
 * Initialize the contents of the frame.
 */
private void initialize() {
    frame = new JFrame();
    frame.getContentPane().setBackground(Color.GREEN);
    frame.setBounds(100, 100, 450, 300);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.getContentPane().setLayout(null);

    JPanel panel = new JPanel();
    panel.setBackground(Color.CYAN);
    panel.setBounds(10, 171, 128, 81);
    frame.getContentPane().add(panel);
}  

编辑:添加了代码工作的图片说明

enter image description here