1

我真的不明白为什么这个JPanel“p”没有出现?我认为我将 JPanel p 编码到了 Jframe 的中间并且应该使整个 JFrame RED 但它似乎没有这样做并且按钮和 JPanel 没有出现。对不起。我知道我可能很愚蠢,但请帮忙。:? 这是代码。

package com.gorillalogic.henry;

import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.*;

public class Notepad {

    private JFrame f; // creates all GUI components
    private JPanel p;
    private JButton b1;

    public Notepad() {

        gui();
    }

    public void gui() {

        f = new JFrame("Notepad");
        p = new JPanel();

        b1 = new JButton("Quit");
        b1.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                System.exit(0);
            }
        });

        f.setSize(600, 400);
        f.setLocationRelativeTo(null);
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.setVisible(true);

        p.setBackground(Color.RED);
        p.add(b1);

        f.add(p, BorderLayout.CENTER);

    }

    public static void main(String[] args) {
        new Notepad();

    }

}

提前致谢。:)

4

1 回答 1

1
p.setOpaque(true);

你需要这样做。

于 2012-11-11T17:47:44.823 回答