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

时间:2020-10-31 22:50:04

标签: java swing awt layout-manager gridbaglayout

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

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

从面板中央开始而不是顶部。我尝试设置gridBagConstraints.anchor = GridBagConstraints.FIRST_LINE_STARTGridBagConstraints.NORT以及NORTHWEST,但是什么也没做。

由于菜单侧面有一个大面板,所以我无法使按钮自动适合(weighty=1选项),否则按钮会拉长。

是否有一种方法可以强制按钮创建列表,或采用其他布局来做到这一点?

1 个答案:

答案 0 :(得分:2)

这是常见的模式。通常,当您要强制组件对齐到特定的边缘时,可以在另一侧放置填充组件并将其设置为填充剩余的空白空间

Filled

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 我通常会使填充物组件透明,但这只是出于演示目的