我正在尝试编写一个基本的GUI应用程序:这只是一个带有文本框和一些按钮的可滚动窗口。我已经按照以下步骤设置了JFrameJScrollPane

public class MainFrame extends JFrame {
    public MainFrame() {
        this.setLayout(new BoxLayout(this.getContentPane(), BoxLayout.PAGE_AXIS));
        JScrollPane scrollPane = new JScrollPane();
        JPanel contentPanel = new JPanel(); contentPanel.setLayout(new BoxLayout(contentPanel, BoxLayout.PAGE_AXIS));

        contentPanel.setPreferredSize(new Dimension(600,1600));
        scrollPane.setViewportView(contentPanel);
        this.setContentPane(scrollPane);
        scrollPane.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
        scrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);

        scrollPane.getViewport().add(new PCData());
        scrollPane.getViewport().add(Box.createRigidArea(new Dimension(0,100)));
        scrollPane.getViewport().add(new PCData());

        this.validate();
        this.setSize(625,800);
        this.setVisible(true);
    }

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


其中PCData类如下:

public class PCData extends JPanel {
    public PCData() {
        this.setSize(new Dimension(600,300));
        this.setLayout(new BoxLayout(this, BoxLayout.PAGE_AXIS));
        this.add(new JTextField());

        JPanel nameData = new JPanel();
        nameData.setLayout(new BoxLayout(nameData, BoxLayout.LINE_AXIS));
        nameData.add(new JTextField());
        nameData.add(Box.createRigidArea(new Dimension(5, 0)));
        nameData.add(new JTextField());
        this.add(nameData);
    }
}


但是,尽管大小合适,但最终我只显示了两个PCData区域之一。内容窗格不可滚动。但是,如果我删除了三行:

//scrollPane.getViewport().add(new PCData());
//scrollPane.getViewport().add(Box.createRigidArea(new Dimension(0,100)));
//scrollPane.getViewport().add(new PCData());


JScrollPane再次变为可滚动。为什么会发生这种情况?如何显示两个PCData面板? (请注意:我正在寻找原因和原因,而不仅仅是方法。)

最佳答案

scrollPane.getViewport().add(new PCData());
scrollPane.getViewport().add(Box.createRigidArea(new Dimension(0,100)));
scrollPane.getViewport().add(new PCData());


只能将单个组件添加到视口。

因此,您需要创建一个面板。将3个组件添加到面板中。然后将面板添加到视口。

09-06 10:19