我有一个底部面板,我想在这个面板中并排添加两个面板。它们是bottomLeft 和bottomRight 面板。所以我在想如果我设置的外部面板的最小尺寸大于它们并排时的宽度,当我让窗口变小时,两个面板应该保持并排。但是bottomRight总是在bottomLeft之下。下面是代码,我将 flowLayout 用于bottomPanel。
bottomPanel.add(bottomPanelRight);
bottomPanel.add(bottomPanelLeft);
bottomPanel.setMinimumSize(new Dimension(600, 600));