GridBagConstraints未正确对齐JRadioButton Box

时间:2016-10-03 21:28:51

标签: java swing user-interface layout jradiobutton

即使指定了.weightx,.weighty和.anchor,GridBagConstraints也不起作用。 我需要在左上角设置组件,但它仍然设置在屏幕的中心。下面是我定位组件的方法。

private void initGUI(){
    getContentPane().setLayout(new GridBagLayout());

    JPanel panel = new JPanel();
    panel.setPreferredSize(new Dimension(450, 450));

    Box buttonBox = Box.createVerticalBox();
    ButtonGroup buttons = new ButtonGroup();

    buttons.add(okOnly);
    buttons.add(okCancel);
    buttons.add(yesNoCancel);
    buttons.add(yesNo);

    buttonBox.add(okOnly);
    buttonBox.add(okCancel);
    buttonBox.add(yesNoCancel);
    buttonBox.add(yesNo);
    buttonBox.setBorder(BorderFactory.createTitledBorder("Buttons"));

    GridBagConstraints gridConstraints = new GridBagConstraints();
    gridConstraints.gridx = 0;
    gridConstraints.gridy = 0;
    gridConstraints.anchor = GridBagConstraints.NORTHWEST;
    gridConstraints.weightx = 1;
    gridConstraints.weighty = 1;

    panel.add(buttonBox, gridConstraints);
    getContentPane().add(panel);
}

1 个答案:

答案 0 :(得分:4)

您将GridBagLayout提供给contentPane,但是在没有GridBagConstraints的情况下向其添加组件,然后将 no 布局提供给您的面板JPanel,以便它使用默认的FlowLayout,并且使用GridBagConstraints向其添加组件,在这种情况下没有任何意义的约束。

解决方案:显然不要这样做。在将组件添加到使用GridBagLayout的容器时,仅使用GridBagConstraints。

事实上,如果您需要的是左上角的JRadioButton集合,我只需摆脱面板JPanel:

import java.awt.*;
import javax.swing.*;

public class Gui extends JFrame {
    private JRadioButton okOnly = new JRadioButton("Ok ");
    private JRadioButton okCancel = new JRadioButton("Ok Cancel");
    private JRadioButton yesNoCancel = new JRadioButton("Yes No Cancel");
    private JRadioButton yesNo = new JRadioButton("Yes No");

    private void initGUI() {
        setDefaultCloseOperation(EXIT_ON_CLOSE);
        getContentPane().setLayout(new GridBagLayout());

        // JPanel panel = new JPanel();
        // panel.setPreferredSize(new Dimension(450, 450));

        setPreferredSize(new Dimension(450, 450));

        Box buttonBox = Box.createVerticalBox();
        ButtonGroup buttons = new ButtonGroup();

        buttons.add(okOnly);
        buttons.add(okCancel);
        buttons.add(yesNoCancel);
        buttons.add(yesNo);

        buttonBox.add(okOnly);
        buttonBox.add(okCancel);
        buttonBox.add(yesNoCancel);
        buttonBox.add(yesNo);
        buttonBox.setBorder(BorderFactory.createTitledBorder("Buttons"));

        GridBagConstraints gridConstraints = new GridBagConstraints();
        gridConstraints.gridx = 0;
        gridConstraints.gridy = 0;
        gridConstraints.anchor = GridBagConstraints.NORTHWEST;
        gridConstraints.weightx = 1;
        gridConstraints.weighty = 1;

        // panel.add(buttonBox, gridConstraints);
        add(buttonBox, gridConstraints);
        // getContentPane().add(panel);

        pack();
        setLocationRelativeTo(null);
        setVisible(true);
    }

    private static void createAndShowGui() {
        new Gui().initGUI();
    }

    public static void main(String[] args) {
        SwingUtilities.invokeLater(() -> createAndShowGui());
    }
}