0

我已经实现了一个对话框,在其中我在一个 JPanel 中添加了许多复选框,该 JPanel 也有一个滚动条。对于我的程序的每次运行,复选框的数量不是固定的,但我在创建对话框之前就知道了。

不幸的是,当我有大量复选框来添加对话框时,如下所示:

在此处输入图像描述

我的代码是:

        JPanel listPanel = new JPanel(new GridLayout(files.size() + 2, 1));

        for (int i = 0; i < files.size(); i++) {
            listPanel.add(files.get(i));
        }

        listPanel.setPreferredSize(new Dimension(600, 1400));
        JScrollPane sp =
                new JScrollPane(listPanel, JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED,
                        JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
        sp.setPreferredSize(new Dimension(300, 200));

        mainPanel.add(sp, BorderLayout.CENTER);
        mainPanel.add(buttonPane, BorderLayout.EAST);

        getContentPane().setLayout(new FlowLayout());

        getContentPane().add(mainPanel);

        pack();
        setResizable(false);

如何在不影响框架的情况下将 Scrollpane 内的 Panel 的大小设置为更大的大小?

4

2 回答 2

3

避免使用setPreferredSize,让布局管理器决定他们实际需要的大小......

更新了示例

滚动窗格的JViewport使用首选大小listPane来确定它需要多少可视空间,这是很多...

为了克服这个问题,您需要向视口提供更好的提示,以了解您的组件实际想要的可视大小。组件的preferredSize在这里不起作用,您需要preferredScrollableViewportSizeScrollable接口提供

在此处输入图像描述

public class BadList {

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

    public BadList() {
        EventQueue.invokeLater(new Runnable() {
            @Override
            public void run() {
                try {
                    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
                }

                JFrame frame = new JFrame("Testing");
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                frame.setLayout(new BorderLayout());
                frame.add(new TestPane());
                frame.pack();
                frame.setLocationRelativeTo(null);
                frame.setVisible(true);
            }
        });
    }

    public class TestPane extends JPanel {

        public TestPane() {

            List<String> files = new ArrayList<>(2000);
            for (int index = 0; index < 2000; index++) {
                files.add(Integer.toString(index));
            }

            ListPane listPanel = new ListPane();
            listPanel.setLayout(new GridBagLayout());
            GridBagConstraints gbc = new GridBagConstraints();
            gbc.weightx = 1;
            gbc.fill = GridBagConstraints.HORIZONTAL;
            gbc.gridwidth = GridBagConstraints.REMAINDER;

            for (String file : files) {
                listPanel.add(new JCheckBox(file), gbc);
            }

            JScrollPane sp = new JScrollPane(listPanel);

            JPanel mainPanel = new JPanel(new BorderLayout());
            JPanel buttonPane = new JPanel(new GridBagLayout());
            buttonPane.add(new JButton("Select All"), gbc);
            buttonPane.add(new JButton("Deselect All"), gbc);
            gbc.weighty = 1;
            buttonPane.add(new JPanel(), gbc);

            mainPanel.add(sp, BorderLayout.CENTER);
            mainPanel.add(buttonPane, BorderLayout.EAST);

            setLayout(new BorderLayout());

            add(mainPanel);
        }
    }

    public class ListPane extends JPanel implements Scrollable {

        @Override
        public Dimension getPreferredScrollableViewportSize() {
            return new Dimension(200, 200);
        }

        @Override
        public int getScrollableUnitIncrement(Rectangle visibleRect, int orientation, int direction) {
            return 128;
        }

        @Override
        public int getScrollableBlockIncrement(Rectangle visibleRect, int orientation, int direction) {
            return 128;
        }

        @Override
        public boolean getScrollableTracksViewportWidth() {
            return false;
        }

        @Override
        public boolean getScrollableTracksViewportHeight() {
            return false;
        }

    }
}

nb-我在这个例子中使用了一些任意的幻数,你将要为你的需要提供更现实的值

于 2013-02-04T08:51:22.427 回答
3
  • JPanel已实施FlowLayout

  • FlowLayout只接受PreferredSize,那么你JScrollPane的铺设是正确的

  • 使用JTable(放在那里Boolean value,代表JCheckBox)而不是向JPanel(非自然滚动,必须更改scroll increment)添加子项

  • listPanel.setPreferredSize(new Dimension(600, 1400));不好Dimmension,注释这个代码行,让它pack()

  • 对于这项工作(此处发布的代码),我将被直接放入,JScrollPane而不是使用,否则发布SSCCEbuttonPaneJFramemainPanel()

于 2013-02-04T09:11:14.247 回答