1

这是关键代码:

  public GridBagConstraints setGridBagC(int gx,int gy,double wx,double wy,int gFill,int gAnchor){
        GridBagConstraints c = new GridBagConstraints();
        c.fill=gFill;
        c.anchor=gAnchor;
        c.gridx=gx;
        c.gridy=gy; 
        c.weightx=wx;
        c.weighty=wy;
        return c;
}

public int initFrame(Container pane){
        setSize(DEFAULT_WIDTH,DEFAULT_HEIGHT);//Set the size of the frame.
        setResizable(false);//You're not allowed to resize the frame.   
        pane.setLayout(new GridBagLayout());    
        GridBagConstraints c;       c=setGridBagC(0,0,0,0,GridBagConstraints.HORIZONTAL,GridBagConstraints.NORTH);
        JMenu ArchJ=new JMenu("Console");
        JMenu menuTwo=new JMenu("MenuTwo");
        JMenu menuThree=new JMenu("MenuThree");
        JMenu menuFour=new JMenu("MenuFour");
        JMenuBar mbar=new JMenuBar();
        mbar.add(ArchJ);
        JMenuItem OneItOne=new JMenuItem("1");
        OneItOne.setPreferredSize(new Dimension(100,30));
        JMenuItem OneItTwo=new JMenuItem("2");
        OneItTwo.setSize(100, 30);
        ArchJ.add(OneItOne);
        ArchJ.addSeparator();
        ArchJ.add(OneItTwo);
        mbar.add(menuTwo);
        mbar.add(menuThree);
        mbar.add(menuFour);
        pane.add(mbar,c);
        JButton bt=new JButton("kd");
        c=setGridBagC(0,1,1.0,0,GridBagConstraints.BOTH,GridBagConstraints.NORTH);
        pane.add(bt,c);     
        //pack();//Do not use pack()
        return 1;
    }

这就是frame

RobotCtrlFrame frame=new RobotCtrlFrame();
frame.initFrame(frame.getContentPane());

结果如下:

在此处输入图像描述

我不打算在pack()这里使用该功能。顶部和底部的空间让我很困惑。我怎样才能消除这些空间?谢谢。虽然使用pack();可以包装空间。我想弄清楚这些剩余空间的原因。

4

4 回答 4

1

我自己不擅长挥杆。但是您是否尝试过将 weightx 和/或 weighty 更改为 1 而不是 0。如本问题所述:SO Question Just something to try。

于 2013-11-04T13:00:29.757 回答
1

键入 cast paneto并在类中JFrame使用设置菜单栏。这是示例程序setJMenuBarJFrame

package com.sample.ui;

import java.awt.Container;
import java.awt.Dimension;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;

public class TestJFrame extends JFrame {

    private static final long serialVersionUID = 3509944903365488258L;

    public TestJFrame() {
        super();
        initFrame(this);
    }

    public GridBagConstraints setGridBagC(int gx, int gy, double wx, double wy,
            int gFill, int gAnchor) {
        GridBagConstraints c = new GridBagConstraints();
        c.fill = gFill;
        c.anchor = gAnchor;
        c.gridx = gx;
        c.gridy = gy;
        c.weightx = wx;
        c.weighty = wy;
        return c;
    }

    public int initFrame(Container pane) {
        setSize(300, 300);// Set the size of the frame.
        setResizable(false);// You're not allowed to resize the frame.
        pane.setLayout(new GridBagLayout());
        GridBagConstraints c;
        c = setGridBagC(0, 0, 0, 0, GridBagConstraints.HORIZONTAL,
                GridBagConstraints.NORTH);
        JMenu ArchJ = new JMenu("Console");
        JMenu menuTwo = new JMenu("MenuTwo");
        JMenu menuThree = new JMenu("MenuThree");
        JMenu menuFour = new JMenu("MenuFour");
        JMenuBar mbar = new JMenuBar();
        mbar.add(ArchJ);
        JMenuItem OneItOne = new JMenuItem("1");
        OneItOne.setPreferredSize(new Dimension(100, 30));
        JMenuItem OneItTwo = new JMenuItem("2");
        OneItTwo.setSize(100, 30);
        ArchJ.add(OneItOne);
        ArchJ.addSeparator();
        ArchJ.add(OneItTwo);
        mbar.add(menuTwo);
        mbar.add(menuThree);
        mbar.add(menuFour);

        JFrame jFrame = (JFrame) pane;
        jFrame.setJMenuBar(mbar);

        JButton bt = new JButton("kd");
        c = setGridBagC(0, 1, 1.0, 0, GridBagConstraints.BOTH,
                GridBagConstraints.NORTH);
        pane.add(bt, c);
        // pack();//Do not use pack()
        return 1;
    }

    public static void main(String[] args) {
        TestJFrame testJFrame = new TestJFrame();
        testJFrame.setVisible(true);
    }

}
于 2013-11-04T13:24:23.373 回答
1

尝试将带有空格(非空)的标签添加到最后一行(为您 gridy = 2)并将 weighty属性设置为 1。这个技巧必须有效

于 2013-11-04T13:09:42.060 回答
1

感谢您的代码。我只是想尝试另一种使用布局设置菜单栏的方法

于 2013-11-04T13:41:26.570 回答