0

我正在尝试为我正在从事的项目绘制侧边栏。我选择使用 GridBagLayout 是因为我对 BoxLayout 的局限性感到沮丧。有人可以帮助解释我做错了什么。我想要的是侧栏包含两个 JPanel。我的代码将它们放在侧边栏的中间而不是顶部。有人可以解释一下我在这里缺少什么。

    JPanel sideBar = new JPanel();
    sideBar.setBounds(0, 0, 180, (int)this.getBounds().getHeight());
    sideBar.setLayout(new GridBagLayout());


    JPanel optionBar = new JPanel();
    optionBar.setBorder(BorderFactory.createTitledBorder("Box1"));
    optionBar.setLayout(new GridBagLayout());


    JPanel buttonBar = new JPanel();
    buttonBar.setBorder(BorderFactory.createTitledBorder("Options"));
    buttonBar.setLayout(new GridBagLayout());


    GridBagConstraints c = new GridBagConstraints();
    c.fill = GridBagConstraints.HORIZONTAL;
    c.gridx = 0;
    c.ipady = 5;
    c.insets = new Insets(10,0,0,0);


    JButton simplify;
    simplify = new JButton("Open");
    simplify.addActionListener( this.listener );
    c.gridy = 0;
    buttonBar.add(simplify, c);

    JButton mergeButton;
    mergeButton = new JButton("Close");
    mergeButton.addActionListener( this.listener );
    c.gridy = 1;
    buttonBar.add(mergeButton, c);

    JButton splitButton;
    splitButton = new JButton("Merge");
    splitButton.addActionListener( this.listener );
    c.gridy = 2;
    buttonBar.add(splitButton, c);

    c.insets = new Insets(0,5,5,5);
    c.gridy = 0;
    sideBar.add(optionBar, c);

    c.gridy = 1;
    c.ipadx = 70;
    sideBar.add(buttonBar, c);

    return(sideBar);
4

3 回答 3

2

GridBagLayout 只会分配组件所需的足够垂直空间,其余部分留空。我希望您看到您的侧栏组件垂直居中?

为了将组件“推出”,您需要设置垂直重量。如果weighty在最后一个组件上将约束设置为 1.0,它将占用该组件的所有剩余垂直空间并将其余部分推到顶部。(您可能还需要将最后一个面板锚定到GridBagConstraints.NORTH)。

c.weighty = 1.0先试试sideBar.add(buttonBar, c);

于 2009-12-15T04:40:00.470 回答
2

如果您熟悉/更熟悉 HTML,则可以使用table2gridbag。它是一个小型控制台工具,它采用布局描述(HTML 表)并将其转换为等效的布局描述以配置 GridBagLayout 管理器

于 2010-09-16T14:45:22.130 回答
0

我的代码将它们放在侧边栏的中间而不是顶部。

那么你需要从阅读Swing 教程开始学习如何正确使用布局管理器。BoxLayout 比 GridBagLayout 容易得多,因为您不必学习如何指定约束。但如果您想使用 GridBagLayout,请阅读“如何使用 GridBagLayout”部分。您可能希望专注于处理“weightx 和 weighty”约束的部分。根据我有限的知识,应该有助于解决问题。

此外,在使用布局管理器时,您不使用 setBounds() 或 setSize()。

于 2009-12-15T04:01:36.587 回答