gpt4 book ai didi

java - 如何用Swing中的控件填充GridbagLayout的单元格?

转载 作者:行者123 更新时间:2023-11-30 03:01:50 25 4
gpt4 key购买 nike

我需要设计一个 Swing GUI,它有一个 JFrame,顶部有一个菜单,另一个主面板在中心有另外三个面板,在面板底部有一个单独的面板。所需UI设计如下enter image description here但是当我运行我的 swing 应用程序时,我得到这样的输出(所有面板都位于窗口的中心)

enter image description here

下面是我的代码

import java.awt.*;
import javax.swing.*;

public class FrontEndView {
private JFrame mainFrame;
private JPanel mainPanel,subPanelUp,subPanelDown,panelLeft,panelRight,panelCenter,panelDown;
private JScrollPane scrollPane;
private JList logViewList;
private JPanel panel1;

public FrontEndView(){
this.prepareGUI();
}

public void prepareGUI(){
mainFrame=new JFrame("GUI");
Toolkit tk = Toolkit.getDefaultToolkit();
int xSize = ((int) tk.getScreenSize().getWidth());
int ySize = ((int) tk.getScreenSize().getHeight());
mainFrame.setSize(xSize,ySize);
mainFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
mainFrame.setResizable(true);
mainFrame.setLayout(new BorderLayout());

mainPanel=new JPanel();
mainPanel.setLayout(new GridBagLayout());
mainPanel.setComponentOrientation(ComponentOrientation.LEFT_TO_RIGHT);

GridBagConstraints gridbagConstMain = new GridBagConstraints();
GridBagConstraints gridbagConstSub = new GridBagConstraints();

subPanelUp=new JPanel();
subPanelUp.setLayout(new GridBagLayout());
subPanelUp.setComponentOrientation(ComponentOrientation.LEFT_TO_RIGHT);

panelLeft=new JPanel();
panelLeft.setBorder(BorderFactory.createTitledBorder("Message Defs"));
gridbagConstSub.fill = GridBagConstraints.HORIZONTAL;
gridbagConstSub.weightx = 0.5;
gridbagConstSub.gridx = 0;
gridbagConstSub.gridy = 0;
subPanelUp.add(panelLeft, gridbagConstSub);

panelCenter=new JPanel();
panelCenter.setBorder(BorderFactory.createTitledBorder("Main Workspace"));
gridbagConstSub.fill = GridBagConstraints.HORIZONTAL;
gridbagConstSub.weightx = 0.5;
gridbagConstSub.gridx = 1;
gridbagConstSub.gridy = 0;
subPanelUp.add(panelCenter, gridbagConstSub);

panelRight=new JPanel();
panelRight.setBorder(BorderFactory.createTitledBorder("Script Viewer"));
gridbagConstSub.fill = GridBagConstraints.HORIZONTAL;
gridbagConstSub.weightx = 0.5;
gridbagConstSub.gridx = 2;
gridbagConstSub.gridy = 0;
subPanelUp.add(panelRight, gridbagConstSub);

mainPanel.add(subPanelUp,gridbagConstMain);

subPanelDown=new JPanel();
subPanelDown.setLayout(new BorderLayout());
panelDown=new JPanel();
panelDown.setBorder(BorderFactory.createTitledBorder("Log View"));
logViewList= new JList();
panelDown.add(logViewList);
gridbagConstSub.fill = GridBagConstraints.HORIZONTAL;
//gridbagConst.ipady=20;
//gridbagConst.weightx = 0.0;
gridbagConstSub.gridwidth = 5;
gridbagConstSub.gridx = 0;
gridbagConstSub.gridy = 0;
subPanelDown.add(panelDown,BorderLayout.PAGE_END);
mainPanel.add(subPanelDown, gridbagConstSub);

scrollPane=new JScrollPane(mainPanel,ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED,ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED);

mainFrame.add(scrollPane);
mainFrame.setVisible(true);
}

public static void main(String[] args){
FrontEndView frontEnd = new FrontEndView();
}
}

我想用设计中所示的相关面板/控件填充 GridBagLayout 的单元格,并且每个面板都应在内部填充其控件(我需要在 panelDown 内添加一个 JList,其大小应为panelDown JPanel)。简单地说,我不需要在 JFrame 中看到任何额外的空间。请指导我了解代码中缺少的内容。

最佳答案

我建议您可以使用具有不同布局管理器的嵌套面板来解决该问题。

框架的默认布局是 BorderLayout。

因此,您可以创建一个面板并将其添加到 PAGE_END,以便它在底部显示整个宽度。

然后您可以创建另一个使用 GridLayout 的面板。然后,您可以向该面板添加 3 个子面板,并且每个面板可以使用自己的布局。然后将此面板添加到框架的中心。随着框架尺寸的变化,额外的空间将分配给中心,因此面板将动态增长。

编辑:

面板太多,我无法花时间了解正在发生的事情

我建议这样的结构:

frame (which by default uses a BorderLayout)
--- CENTER
panel using GrigBagLayout
childPanel1
childPanel2
childPanel3
---- PAGE_END
JScrollPane containing the JList

当您创建 JList 时,基本代码为:

JList list = new JList(...);
list.setVisibleRowCount(5);
JScrollPane scrollPane = new JScrollPane( list );

无需创建面板即可将列表添加到另一个面板。设置可见行数的目的是为 JList 提供固定的高度。然后,滚动条将根据需要出现在滚动 Pane 中。

现在 PAGE_END 具有固定高度组件,所有空间重置都将转到您添加到框架中心的组件。

all the panels are packed in the center of the window)

当您使用 GridBagLayout 时,面板会以其首选尺寸显示。如果所有面板的总大小小于滚动 Pane 的大小,那么它们将位于中心。如果您希望面板填充可用空间,那么我相信您需要使用weightx/y 约束。阅读 Swing 教程中关于 How to Use GridBagLayout 的部分它描述了所有的约束。

这就是为什么我建议使用 GridLayout。它将使所有面板具有相同的大小,并将填充滚动 Pane 的视口(viewport)而不使用约束。

mainFrame.add(menubar,BorderLayout.NORTH);

这不是向框架添加菜单栏的方式。

您应该使用:

mainFrame.setJMenuBar(menuBar);

您在上一个问题中已被告知这一点。为什么不听劝告???当您不注意建议时,我们为什么要花时间提供帮助。

关于java - 如何用Swing中的控件填充GridbagLayout的单元格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35756787/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com