好的,所以这里是设置: 面板中的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列,都是宽度均匀的。然而,初始显示有这个.SrsDocumentScroll的宽度比其他的更窄。另外,当我调整窗口大小时,这个.SrsDocumentScroll被消耗而另一个没有调整大小直到这个.SrsDocumentScroll被完全消耗。我曾预计这三个人都会调整大小,因为this.plan会调整大小。在我调整大小时,weightx不确定如何分配空间吗?
我还应该补充说,三者的内容是:textArea用文本填充,树只用根,而选项卡式窗格只有一个选项卡。所有内容都动态变化,但调整大小不是我遇到麻烦的行为,只是调整窗口的大小,它消耗(如窗口缩小)最左边 - >最右边而不是同等。
编辑:这是一个更多的测试,这就是为什么我使用0.33作为我的weightx。最终的结果是对tabbedpane和其他人的重量更大。更像是(0.25,0.25,0.5),但如果你跟我一样,那么这些价值就更容易管理。
答案 0 :(得分:2)
我原本以为这个布局有3列,都是宽度均匀的。 ......我本以为这三个人都要平等调整......
很可能取决于添加到GridBagLayout的组件的preferredSize,maximumSize和minimumSize。如果你想在3列中使用相同大小的组件,请不要使用GridBagLayout,而是使用GridLayout(1, 3)
(1行,3列)或GridLayout(0, 3)
(3列和可变行数)。 / p>
为了告诉你我的意思,请运行下面的代码,评论或取消注释这两行:
// 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());
}
}