我正在尝试使用GridBagLayout构建一个包含数组元素的Panel。创建元素工作得很好。问题是要么忽略Layoutmanager或者没有正确应用约束,反正按钮的排列方式就好像根本没有Layoutmanager一样。那么我该怎么做才能看起来像桌子呢?
提前致谢!
旁注:不,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]);
}
}
}
}
}
答案 0 :(得分: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]);
}
}
}
}