Java GridBagConstraints 的问题

发布于 2024-11-19 14:40:48 字数 875 浏览 3 评论 0原文

所以,我需要我的布局看起来像这样:

{|Name|         |Info||Tag||Id|}

现在它看起来像这样:

{|Name|   |Info|   |Tag|   |Id|}

或多或少。这是我的代码:

    GridBagConstraints c;

    c = new GridBagConstraints(0, 0, 5, 1, .5, .1, GridBagConstraints.WEST, GridBagConstraints.BOTH, new Insets(0,0,0,0), 5, 5);
    header.add(name, c);
    c = new GridBagConstraints(10, 0, 1, 1, .5, .1, GridBagConstraints.EAST, GridBagConstraints.BOTH, new Insets(1,1,1,1), 5, 5);
    header.add(id, c);
    c = new GridBagConstraints(8, 0, 2, 1, .5, .1, GridBagConstraints.EAST, GridBagConstraints.BOTH, new Insets(1,1,1,1), 5, 5);
    header.add(tag, c);
    c = new GridBagConstraints(6, 0, 2, 1, .5, .1, GridBagConstraints.EAST, GridBagConstraints.BOTH, new Insets(1,1,1,1), 5, 5);
    header.add(info, c);

我应该如何更改它以获得所需的结果?

So, I need my layout to look like this:

{|Name|         |Info||Tag||Id|}

Right now it looks like this:

{|Name|   |Info|   |Tag|   |Id|}

More or less. Here is my code:

    GridBagConstraints c;

    c = new GridBagConstraints(0, 0, 5, 1, .5, .1, GridBagConstraints.WEST, GridBagConstraints.BOTH, new Insets(0,0,0,0), 5, 5);
    header.add(name, c);
    c = new GridBagConstraints(10, 0, 1, 1, .5, .1, GridBagConstraints.EAST, GridBagConstraints.BOTH, new Insets(1,1,1,1), 5, 5);
    header.add(id, c);
    c = new GridBagConstraints(8, 0, 2, 1, .5, .1, GridBagConstraints.EAST, GridBagConstraints.BOTH, new Insets(1,1,1,1), 5, 5);
    header.add(tag, c);
    c = new GridBagConstraints(6, 0, 2, 1, .5, .1, GridBagConstraints.EAST, GridBagConstraints.BOTH, new Insets(1,1,1,1), 5, 5);
    header.add(info, c);

How should I change this to get the desired result?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

记忆之渊 2024-11-26 14:40:48

水平 BoxLayout 可能更容易。您的代码将类似于:

header.add( name );
header.add( Box.createHorizontalGlue() );
header.add( info );
...

EXAMPLE

public class GridBagLayoutTest{

    public static void main(String[] args){
        SwingUtilities.invokeLater(new Runnable(){
            @Override
            public void run(){
                createAndShowGUI();             
            }
        });
    }

    private static void createAndShowGUI(){
        final JFrame frame = new JFrame();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setResizable(false);

        final JPanel panel = new JPanel(){
            @Override
            public Dimension getPreferredSize(){
                return new Dimension(200, 20);
            }
        };
        panel.setLayout(new BoxLayout(panel, BoxLayout.X_AXIS));
        panel.add( new JLabel("|Name|"));
        panel.add(Box.createHorizontalGlue());
        panel.add(new JLabel("|Info|"));
        panel.add(new JLabel("|Tag|"));
        panel.add(new JLabel("|Id|"));

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

OUTPUT

在此处输入图像描述

A horizontal BoxLayout might be easier. Your code would be something like:

header.add( name );
header.add( Box.createHorizontalGlue() );
header.add( info );
...

EXAMPLE

public class GridBagLayoutTest{

    public static void main(String[] args){
        SwingUtilities.invokeLater(new Runnable(){
            @Override
            public void run(){
                createAndShowGUI();             
            }
        });
    }

    private static void createAndShowGUI(){
        final JFrame frame = new JFrame();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setResizable(false);

        final JPanel panel = new JPanel(){
            @Override
            public Dimension getPreferredSize(){
                return new Dimension(200, 20);
            }
        };
        panel.setLayout(new BoxLayout(panel, BoxLayout.X_AXIS));
        panel.add( new JLabel("|Name|"));
        panel.add(Box.createHorizontalGlue());
        panel.add(new JLabel("|Info|"));
        panel.add(new JLabel("|Tag|"));
        panel.add(new JLabel("|Id|"));

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

OUTPUT

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文