我有一个这样的简单形式:
用户名:..........
密码:..........
当重新调整表单大小时,我希望JTextField
(由.........说明)水平重新调整大小以适应新宽度但不垂直(相同高度) JTextField
)。我们有办法控制这个吗?
谢谢!
答案 0 :(得分:2)
要使用标准布局管理器(GridBag除外)回答布局,请按如下方式嵌套布局:
BorderLayout
NORTH=BorderLayout // keep everything at the top
WEST=GridLayout(0,1) // the labels
Label "UserName")
Label "Password")
CENTER=GridLayout(0,1) // the fields
Text Field
Password Field
代码看起来像
JPanel outer = new JPanel(new BorderLayout());
JPanel top = new JPanel(new BorderLayout());
JPanel labels = new JPanel(new GridLayout(0,1,3,3));
JPanel fields = new JPanel(new GridLayout(0,1,3,3));
outer.add(top, BorderLayout.NORTH);
top.add(labels, BorderLayout.WEST);
top.add(fields, BorderLayout.CENTER);
labels.add(new JLabel("Username"));
labels.add(new JLabel("Password"));
fields.add(new JTextField());
fields.add(new JPasswordField());
请参阅http://developer.java.sun.com/developer/onlineTraining/GUI/AWTLayoutMgr/,了解如何嵌套布局管理器的(非常旧的)解释。
GridBag是邪恶的化身;如果您有多个组件,几乎不可能弄清楚代码在做什么。不过要说明如何做到这一点:
Insets i = new Insets(0,0,0,0);
p.setLayout(new GridBagLayout());
p.add(new JLabel("Username"),
new GridBagConstraints(0, 0, 1, 1, 0, 0,
GridBagConstraints.WEST, GridBagConstraints.NONE, i, 0, 0));
p.add(new JLabel("Password"),
new GridBagConstraints(0, 1, 1, 1, 0, 1,
GridBagConstraints.NORTHWEST, GridBagConstraints.NONE, i, 0, 0));
p.add(new JTextField(),
new GridBagConstraints(1, 0, 1, 1, 1, 0,
GridBagConstraints.CENTER, GridBagConstraints.HORIZONTAL, i, 0, 0));
p.add(new JPasswordField(),
new GridBagConstraints(1, 1, 1, 1, 1, 1,
GridBagConstraints.NORTH, GridBagConstraints.HORIZONTAL, i, 0, 0));
它有效,但很难“看到”代码中的布局......
答案 1 :(得分:1)
这取决于您使用过的布局管理器。
默认布局(FlowLayout
)根本不会调整组件的大小。
如果您希望对组件的调整大小进行细粒度控制,请查看GridBagLayout
。
简单的方法是使用setResizable(false)
对于像登录窗口这样简单的东西,这可能是您想要的方式。
如果您对使用不同的布局感兴趣,可能需要查看Java教程。他们有一个很棒的section on laying out components。
答案 2 :(得分:1)
使用一个布局管理器(适用于任何用途)控制它的一种简单方法是使用 MigLayout
JPanel panel = new JPanel(new MigLayout());
panel.add(firstNameLabel);
panel.add(firstNameTextField);
panel.add(lastNameLabel, "gap unrelated");
panel.add(lastNameTextField, "wrap");
panel.add(addressLabel);
panel.add(addressTextField, "span, grow");
(来源:miglayout.com)