gpt4 book ai didi

java - GridBagLayout 和 ScrollPane

转载 作者:行者123 更新时间:2023-11-30 09:31:59 25 4
gpt4 key购买 nike

好的,下面是设置:一个面板中的 3 个组件(一个 JScrollpane、一个 JPanel 和一个 JTabbedPane)。

this.plan = new JPanel();
this.plan.setLayout(new GridBagLayout());
GridBagConstraints c = new GridBagConstraints();

//The ScrollPane
this.SrsDocument = new JTextArea();
this.SrsDocument.setEditable(false);
this.SrsDocumentScroll = new JScrollPane(this.SrsDocument);
c.fill = GridBagConstraints.BOTH;
c.weightx = 0.33;
c.weighty = 1.0;
c.gridx = 0;
this.plan.add(this.SrsDocumentScroll, c);
...
//The Panel
this.TreePanel = new JPanel();
this.TreePanel.setLayout(new BoxLayout(this.TreePanel, BoxLayout.Y_AXIS));
this.Tree = new JTree();
((DefaultTreeModel)(this.Tree.getModel())).setRoot(null);
this.Tree.getSelectionModel().setSelectionMode(TreeSelectionModel.SINGLE_TREE_SELECTION);
this.TreeScroll = new JScrollPane(this.Tree);
this.TreePanel.add(this.TreeScroll);
c.gridx = 1;
c.weightx = 0.33;
this.plan.add(this.TreePanel, c);
...
//The TabbedPane
this.currentFunction = new JTabbedPane();
c.gridx = 2;
c.weightx = 0.33;
this.plan.add(this.currentFunction, c);

我原以为这个布局有 3 列,所有列的宽度都是均匀的。但是初始显示的 this.SrsDocumentScroll 的宽度比另一个 2 窄得多。此外,当我调整窗口大小时,this.SrsDocumentScroll 被消耗,而另一个不调整大小,直到 this.SrsDocumentScroll 被完全消耗。当 this.plan 调整大小时,我曾预计所有三个都将调整大小。 weightx 是否没有像我假设的那样在调整大小时确定如何分配空间?

我还要补充一下,这三者的内容是:textArea 填充的是文本,tree 只是一个根,tabbed pane 只有一个 tab。所有的内容都是动态变化的,但是调整大小并不是我遇到麻烦的行为,只是调整窗口的大小并且它消耗(随着窗口缩小)最左 ->最右而不是平均。

编辑:这更像是一个测试,这就是为什么我使用 0.33 作为我的 weightx 的原因。最终结果是选项卡 Pane 比其他 Pane 更重。更像 (0.25,0.25,0.5) 但比那些值更易于管理,如果你跟我来。

最佳答案

I had expected this layout to have 3 columns, all with even width. ... I had expected all three to resize equally ...

很大程度上可能取决于添加到 GridBagLayout 的组件的 preferredSize、maximumSize 和 minimumSize。如果你想在 3 列中使用相同大小的组件,请不要使用 GridBagLayout,而是使用 GridLayout(1, 3)(对于 1 行,3 列)或 GridLayout(0, 3) (3 列和可变行数)。

为了向您展示我的意思,运行下面的代码,注释或取消注释这两行:

      // setSizes(btn, scrollpane);
// setSizes(label, scrollpane);

GridBagTest.java

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

public class GridBagTest {
public static void main(String[] args) {
JPanel panel = new JPanel(new GridBagLayout());

JTextArea textarea = new JTextArea(5, 30);
JScrollPane scrollpane = new JScrollPane(textarea);

JButton btn = new JButton("Foo");

JLabel label = new JLabel("Bar");
label.setBorder(BorderFactory.createTitledBorder("Bar"));

GridBagConstraints gbc = new GridBagConstraints();
gbc.fill = GridBagConstraints.BOTH;
gbc.gridheight = 1;
gbc.gridwidth = 1;
gbc.gridx = 0;
gbc.gridy = 0;
gbc.weightx = 1.0;
gbc.weighty = 1.0;

panel.add(scrollpane, gbc);

gbc.gridx = 1;
panel.add(btn, gbc);

gbc.gridx = 2;
panel.add(label, gbc);

// **** comment or uncomment the lines below
// setSizes(btn, scrollpane);
// setSizes(label, scrollpane);

JFrame frame = new JFrame("GBC Test");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().add(panel);
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);

}

private static void setSizes(Component changeComponent,
Component templateComponent) {
changeComponent.setPreferredSize(templateComponent.getPreferredSize());
changeComponent.setMaximumSize(templateComponent.getMaximumSize());
changeComponent.setMinimumSize(templateComponent.getMinimumSize());
}
}

关于java - GridBagLayout 和 ScrollPane,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12681649/

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