如何使用GridBagLayout创建3个JPanels,一个在另一个上面,可变高度

时间:2017-08-06 13:19:38

标签: java swing layout-manager gridbaglayout

我想在java中编写一个简单的文本编辑器。

我已经组织了我的布局并得出结论,我基本上需要3个JPanel,一个在另一个之上。第一个和第二个将是非常短的高度,因为它们将是菜单栏和分别包含2个JLabel的JPanel。 中间的一个需要是最高的那个,因为所有的文本都将包含在其中。

我认为我需要使用GridBagLayout,但这不起作用,我需要它们比小的占用大10倍。并且所有这些都将使用JFrame提供的宽度。

到目前为止,代码段是 -

GridBagConstraints gbc = new GridBagConstraints
gbc.fill = GridBagConstraints.HORIZONTAL;
gbc.gridx = 0;
gbc.gridy = 0;
mainFrame.add(upperGrid, gbc);
gbc.gridx = 0;
gbc.gridy = 1;
gbc.gridheight = 10;
mainFrame.add(upperGrid, gbc);
gbc.gridx = 0;
gbc.gridy = 11;
mainFrame.add(upperGrid, GBC);

我得到的结果就是这个 -

Distorted GridBagLayout

1 个答案:

答案 0 :(得分:3)

我建议你放弃GridLayout的想法。我会做以下事情:

  1. 使用JMenuBar作为菜单栏(https://docs.oracle.com/javase/tutorial/uiswing/components/menu.html

  2. 使用BorderLayout:

    JFrame frame = new JFrame();
    JPanel topPanel = new JPanel();
    topPanel.setLayout(new FlowLayout());
    topPanel.add(new JLabel("Label 1"));
    topPanel.add(new JLabel("Label 2"));
    frame.add(topPanel, BorderLayout.NORTH);
    JPanel bigPanel = new JPanel();
    frame.add(bigPanel, BorderLayout.CENTER);
    
  3. 例如,当您需要安排包含大量文本字段的对话框时,可以使用GridLayout。但对于这种“粗暴”的东西,BorderLayout更好,也因为它可能更快。 (可能,我不确定)

    编辑:如果您必须使用GridBagLayout,那么您可以执行以下操作:

    JPanel panel = new JPanel();
    GridBagLayout layout = new GridBagLayout();
    layout.columnWidths = new int[] { 0, 0 };
    layout.rowHeights = new int[] { 0, 0, 0, 0 };
    layout.columnWeights = new double[] { 1.0, Double.MIN_VALUE };
    layout.rowWeights = new double[] { 0.0, 0.0, 1.0, Double.MIN_VALUE };
    panel.setLayout(layout);
    
    JPanel menuBar = new JPanel();
    GridBagConstraints contraints = new GridBagConstraints();
    contraints.fill = GridBagConstraints.BOTH;
    contraints.gridx = 0;
    contraints.gridy = 0;
    panel.add(menuBar, contraints);
    
    JPanel panelForLabels = new JPanel();
    contraints = new GridBagConstraints();
    contraints.fill = GridBagConstraints.BOTH;
    contraints.gridx = 0;
    contraints.gridy = 1;
    panel.add(panelForLabels, contraints);
    
    JPanel bigPanel = new JPanel();
    contraints = new GridBagConstraints();
    contraints.fill = GridBagConstraints.BOTH;
    contraints.gridx = 0;
    contraints.gridy = 2;
    panel.add(bigPanel, contraints);