3

我有将行添加到 GridBagLayout 的代码,但我不知道如何删除行。单击某个按钮时,我想摆脱布局的最后一行。

这是添加它们的代码:

public static JPanel createLayout(int rows) {
    JPanel product = new JPanel(new GridBagLayout());
    String[] lables = {"School    ", "Advanced #", "Novice #   "};
    double weight = .3333333333333;

    GridBagConstraints c = new GridBagConstraints();
    c.insets = new Insets(3, 3, 3, 3);
    c.weightx = weight;
    c.fill = GridBagConstraints.HORIZONTAL;
    c.anchor = GridBagConstraints.CENTER;
    c.gridy = 1;
    for (int j = 0; j < lables.length; j++) {
        c.gridx = j;
        JLabel l = new JLabel(lables[j]);
        product.add(l, c);
    }

    for (int i = 0; i < rows; i++) {
        c.gridy++;
        for (int j = 0; j < lables.length; j++) {
            c.gridx = j;
            JTextField f = new JTextField();
            product.add(f, c);
        }
    }
    c.gridy++;
    c.gridx = 0;
    c.anchor = GridBagConstraints.NORTHWEST;
    c.fill = GridBagConstraints.NONE;

    JPanel b = new JPanel();
    JButton add = new JButton("+");
    b.add(add);
    JButton delete = new JButton("-");
    b.add(delete);
    product.add(b, c);
    return product;
}
public static void main(String[] args) throws IOException {
    JFrame frame = new JFrame("Debate Calculator");
    JPanel debates = new JPanel();
    frame.add(createLayout(5), BorderLayout.NORTH);
    frame.pack();
    frame.setVisible(true);
}

那么如何删除一行呢?

4

1 回答 1

3

如果您坚持自己做所有事情,那么您将需要维护某种模型,以便您知道所有内容在哪里。

首先将每一行组件添加到某种List. 当您删除一行时,您可以简单地找到构成该行的所有组件并将它们从容器中删除。

这给你带来了一个问题。因为y最后一行的位置可能不再匹配行数。(即,您不能简单c.gridy = listOfComponents.size()地确定在何处添加下一行)。

GridBagConstraints但是,确实允许您获得用于布局给定组件的约束。这意味着您可以在 中找到最后一行list,获取第一列的约束,并且您将能够推断出最后一个y位置...查看GridBagConstraints#getConstraints更多信息。

或者你可以只使用JTable

于 2013-04-28T23:39:07.953 回答