JPanel GridBagLayout 从顶部而不是中心开始

JPanel GridBagLayout start from top instead of center

我一直在尝试制作一个主菜单按钮从仪表板顶部到底部列出的仪表板,但是设置

    gridBagConstraints.gridx = 10;
    gridBagConstraints.gridy = 0;

从面板的中央而不是顶部开始。我尝试设置 gridBagConstraints.anchor = GridBagConstraints.FIRST_LINE_STARTGridBagConstraints.NORT 以及 NORTHWEST,但没有任何效果。

由于菜单侧面有一个大面板,我不能让按钮自动适应(weighty=1 选项),否则按钮会变长。

有没有办法强制按钮制作列表,或者有其他布局的方法吗?

这是一个常见的模式。通常,当你想强制组件对齐到特定边缘时,你会在相对的一侧放置一个填充组件并将其设置为填充剩余的空白space

import java.awt.Color;
import java.awt.EventQueue;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;

public class Test {

    public static void main(String[] args) {
        new Test();
    }

    public Test() {
        EventQueue.invokeLater(new Runnable() {
            @Override
            public void run() {
                JFrame frame = new JFrame();
                frame.setLayout(new GridBagLayout());
                GridBagConstraints gbc = new GridBagConstraints();
                gbc.gridx = 0;
                gbc.gridwidth = GridBagConstraints.REMAINDER;

                frame.add(new JLabel("This is a line"), gbc);
                frame.add(new JLabel("This is another line"), gbc);
                frame.add(new JLabel("This is show off line"), gbc);

                gbc.weighty = 1;
                JPanel filler = new JPanel();
                filler.setBackground(Color.RED);

                frame.add(filler, gbc);

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

ps 我通常会将填充组件设为透明,但这是为了演示目的