图片中JFrame的布局是GridBagLayout。电子邮件JTextfield的网格宽度为3.是否有可能为此JTextfield提供100%的宽度来填充整个网格单元?
字段是动态添加的。因此,给它一个静态宽度值宽度setColumns不是一个选项。
答案 0 :(得分:2)
GridBagConstraints c = new GridBagConstraints();
button = new JButton("Button");
c.fill = GridBagConstraints.HORIZONTAL;
yourPanel.add(button, c);