这是“Keeping preferred sizes of components in center of BorderLayout”问题的延续,我不知道如何从此处链接。如果有人想编辑链接并以某种方式向我发送消息说它是如何完成的,我将不胜感激。

在该问题中,我问并得到了答案,如何使组件保持其首选大小,以及如何将位于BorderLayout中心的面板放置在该布局中心的左上角(而不是让它漂浮到中间。

为了使它适合一个问题,我简化了我的实际问题,现在我很难将其概括。下面的代码是相似的,除了它在边框布局的中心放置了一个选项卡式窗格。

我已经删除了一些内容:在我的应用中,带标签的窗格位于拆分窗格的一半中,并且上方有一个工具栏(单独的borderlayout面板),下方有导航按钮。我把所有内容都删掉了,因为我可以在没有问题的情况下演示问题,但这确实意味着我有使用边框布局的理由,主要是因为所有这些中间的面板都是我想利用的任何额外功能用户必须给他们的空间。

在此代码中,我们获得了选项卡式窗格,但是如果窗口将其分配给其中,则其中的两个面板将浮动到其额外空间的中间。在一个版本中(请参见代码底部的替换行),我们为它们提供了滚动条,而在另一个版本中,则没有。

我希望选项卡式窗格中的组件保持其首选大小。现在,此代码通过将每个窗格放到gridbaglayout面板中来做到这一点,但这具有我不想要的其他效果。

我希望每个选项卡式窗格的内容都保留在该空间的左上角(如果它大于面板所需的空间);我希望在没有足够空间时显示滚动条。

那么,关于如何完成此工作还有其他意见吗?

package example;

import java.awt.BorderLayout;
import java.awt.GridBagLayout;

import javax.swing.BoxLayout;
import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTabbedPane;

public class BorderAndBox extends JFrame
{
    public static void main(String args[])
    {
        BorderAndBox bnb = new BorderAndBox();
        bnb.createUI();
        bnb.setLocationByPlatform(true);
        bnb.setVisible(true);
    }

    public void createUI()
    {
        JPanel borderPanel = new JPanel(new BorderLayout());

        JPanel innerPanelOne = new JPanel();
        innerPanelOne.setLayout(new BoxLayout(innerPanelOne, BoxLayout.LINE_AXIS));
        String[] firstChoices = { "first", "uno", "UN" };
        String[] secondChoices = { "second", "dos", "zwei" };
        String[] thirdChoices = { "third", "tres", "drei" };
        JComboBox firstCombo = new JComboBox(firstChoices);
        JComboBox secondCombo = new JComboBox(secondChoices);
        JComboBox thirdCombo = new JComboBox(thirdChoices);
        innerPanelOne.add(firstCombo);
        innerPanelOne.add(secondCombo);
        innerPanelOne.add(thirdCombo);
        JPanel innerPanelTwo = new JPanel();
        innerPanelTwo.setLayout(new BoxLayout(innerPanelTwo, BoxLayout.PAGE_AXIS));
        innerPanelTwo.add(new JLabel("additionalLabel"));

        JPanel panelA = new JPanel(new GridBagLayout());
        panelA.add(innerPanelOne);

        JPanel innerPanelThree = new JPanel();
        innerPanelThree.setLayout(new BoxLayout(innerPanelThree, BoxLayout.PAGE_AXIS));
        JLabel lblFirst = new JLabel("first in line");
        JLabel lblSecond = new JLabel("second to none");
        JLabel lblThird = new JLabel("third the bird");
        JLabel lblFourth = new JLabel("fourth");
        JLabel lblFifth = new JLabel("fifth");
        JLabel lblSixth = new JLabel("sixth");
        innerPanelThree.add(lblFirst);
        innerPanelThree.add(lblSecond);
        innerPanelThree.add(lblThird);
        innerPanelThree.add(lblFourth);
        innerPanelThree.add(lblFifth);
        innerPanelThree.add(lblSixth);
        JPanel panelB = new JPanel(new GridBagLayout());
        panelB.add(innerPanelThree);

        JScrollPane scrollPane1 = new JScrollPane(panelA);
        JScrollPane scrollPane2 = new JScrollPane(panelB);

        JTabbedPane tabbedPane = new JTabbedPane();
        tabbedPane.add("one", scrollPane1);
        tabbedPane.add("two", scrollPane2);


        JPanel westPanel = new JPanel(new BorderLayout());
        JPanel northPanel = new JPanel(new BorderLayout());
        northPanel.add(tabbedPane, BorderLayout.NORTH);
        westPanel.add(northPanel, BorderLayout.WEST);
        // the following lines are mutually exclusive;
        // use only the first, you have no scroll bars,
        // use only the second, you do have them
        borderPanel.add(westPanel, BorderLayout.CENTER);
//          borderPanel.add(tabbedPane, BorderLayout.CENTER);

        getContentPane().add(tabbedPane);
        pack();
    }



}

最佳答案

也许我错过了您想做的事情,但是您似乎缺少的是codE,它设置了GridBagConstraints来向使用GridBagLayout的容器添加组件。例如

  GridBagConstraints gbc = new GridBagConstraints(0, 0, 1, 1, 1.0, 1.0,
        GridBagConstraints.NORTHWEST, GridBagConstraints.NONE,
        new Insets(0, 0, 0, 0), 0, 0);
  panelA.add(innerPanelOne, gbc);

  //...

  panelB.add(innerPanelThree, gbc);

07-27 13:57