JScrollPane(用于JTable)在MigLayout中填充和增长

时间:2014-05-27 18:49:11

标签: java swing jtable jscrollpane miglayout

很难描述会发生什么,所以这里是SSCCE:

public class TableInScrollPaneTest {


    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            @Override
            public void run() {
                new TableInScrollPaneTest();
            }
        });
    }

    public TableInScrollPaneTest() {

        JFrame frame = new JFrame();
        frame.setSize(300, 300);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setLocationRelativeTo(null);

        LayoutManager layout;

        layout = new MigLayout("wrap 1, fill", "fill, grow", "[fill, grow 1][fill, grow 2]");
        //layout = new GridLayout(2,1);

        JPanel panel = new JPanel(layout);


        JPanel placeHolder = new JPanel();
        JPanel placeHolder2 = new JPanel();
        placeHolder.setBackground(Color.GRAY);
        placeHolder2.setBackground(Color.LIGHT_GRAY);

        JTable table = this.createTable();
        JScrollPane tableScrollPane = new JScrollPane(table, 
                JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED, 
                JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
        //table.setPreferredScrollableViewportSize(new Dimension(5000,200));

        panel.add(placeHolder, "");
        panel.add(tableScrollPane, ""); 
        //panel.add(placeHolder2, "");

        frame.setContentPane(panel);
        frame.setVisible(true);
    }

    private JTable createTable() {

        String[] columnNames = "Name 1,Name 2,Name 3,Name 4,Name 5".split(",");

        int rows = 30;
        int cols = columnNames.length;
        String[][] data = new String[rows][cols];

        for(int i=0; i<rows; i++) {
            for(int j=0; j<cols; j++) {
                data[i][j] = "R"+i+" C"+j;
            }
        }
        JTable table = new JTable(data, columnNames);

        return table;
    }


}

我希望scrollPane在用户调整框架大小时使用所有可用空间。但另外我也希望另一个面板(placeHolder)成长。例如,帧的高度除以3,placeHolder得到1个部分,scrollPane得到2个部分。 GridLayout有点做我需要的,但我正在寻找MigLayout的解决方案。

如果您取消注释panel.add(placeHolder2, "");并对上面的行进行评论,那就可以了。


EDIT1:
我尝试使用sizegroup约束。现在placeHolder和scrollPane具有相同的大小,但我希望scrollPane占用两倍的空间。 (另外在我的程序中我没有像这样的占位符,而是有一些标签,复选框和文本字段。所以sizegroup可能不是我需要的,除了有更多的方法可以使用它)

1 个答案:

答案 0 :(得分:1)

我在这里找到了解决方案:
MigLayout confused by JTable objects contained in JScrollBar objects

在这里:
How to set JScrollPane to show only a sepecific amount of rows

table.setPreferredScrollableViewportSize(null);

table.setPreferredScrollableViewportSize(table.getPreferredSize());


我不知道这段代码片段之间的区别是什么,但它们都能满足我的需求。