0

我正在尝试使用 GridBagLayout 构建一个包含数组元素的面板。创建元素工作得很好。问题是布局管理器被忽略或约束没有正确应用,无论如何按钮的排列就像根本没有布局管理器一样。那么我该怎么做才能让它看起来像一张桌子?

提前致谢!

旁注:不,JTable 不是一个选项。在我的应用程序中,实际上只创建了一些按钮。

编辑:我发现了问题。我只是忘记了“setLayout(gbl);”这一行 愚蠢的我。

//(includes)

public class GUI {
    public static void main (String[] args) {
        JFrame frame = new JFrame();
        frame.add (new MyPanel(5, 4);
        frame.setVisible(true);
    }

    private class MyPanel () extends JPanel {
        public MyPanel (int x, int y) {
            GridBagLayout gbl = new GridBagLayout();
            GridBagConstraints gbc = new GridBagConstraints();
            setLayout (gbl);

            JButton[][] buttons = new JButton[x][y];
            for (int i=0; i<x; i++) {
                for (int j=0; j<y; j++) {
                    buttons[i][j] = new JButton("a"+i+j);
                    gbc.gridx = j; gbc.gridy = i;
                    gbl.setConstraints(buttons[i][j], gbc);
                    add (buttons[i][j]);
                }
            }
        }
    }
}
4

1 回答 1

0

您也可以考虑使用MigLayout,代码更简单,更易于维护:

public class MyPanel extends JPanel {
    public MyPanel(int x, int y) {
        setLayout(new MigLayout("wrap " + x));

        JButton[][] buttons = new JButton[x][y];
        for (int i = 0; i < x; i++) {
            for (int j = 0; j < y; j++) {
                buttons[i][j] = new JButton("a" + i + j);
                add(buttons[i][j]);
            }
        }
    }
}
于 2013-03-13T20:39:01.287 回答