我正在尝试使用 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]);
}
}
}
}
}