gpt4 book ai didi

java - 边框布局未占用所有可用空间

转载 作者:行者123 更新时间:2023-12-01 17:24:37 25 4
gpt4 key购买 nike

我是 swing 新手,我怀疑这个问题与 BoxLayout 有关。我试图在框架顶部制作一系列文本字段和标签。这是我的代码:

public static void main(String[] args) {
JFrame frame = new JFrame("New Message");
frame.setSize(100, 100);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

JTextArea textArea = new JTextArea();
frame.add(textArea, BorderLayout.CENTER);

JPanel list = new JPanel();
list.setLayout(new BoxLayout(list, BoxLayout.Y_AXIS));
frame.add(list, BorderLayout.NORTH);

String[] labels = {"To: ", "Cc: ", "Bcc: ", "Subject: "};
for (int i = 0; i < labels.length; i++) {
JLabel l = new JLabel(labels[i]);
JTextField f = new JTextField();
JPanel p = new JPanel();
p.add(l, BorderLayout.WEST);
p.add(f, BorderLayout.CENTER);
list.add(p);
}

frame.pack();

frame.setVisible(true);

}

这是结果: enter image description here

我想要的是“收件人”、“抄送”、“密件抄送”和“主题”始终位于左侧,而“文本字段”占据其余空间。

最佳答案

一些旁注:

  • 通过将 UI 初始化包装在 SwingUtilities.invokeLater 中,从 EDT 启动 UI
  • JTextField 指定列数,为 JTextArea 指定行数和列数始终是个好主意
  • 如果之后调用 pack(),则调用 setSize() 是没有用的。一般来说,不要在任何 Swing 组件上使用 setSize()/setLocation/setBounds()(将所有这些留给 LayoutManager)

GridBagLayout 在这里做得非常好。 GroupLayout 也可以工作。

请参阅此示例:

import java.awt.BorderLayout;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Insets;

import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.JTextField;
import javax.swing.SwingUtilities;

public class Mail {

protected void initUI() {
JFrame frame = new JFrame("New Message");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

JPanel list = new JPanel(new GridBagLayout());
frame.add(list, BorderLayout.CENTER);
GridBagConstraints labelGBC = new GridBagConstraints();
labelGBC.insets = new Insets(3, 3, 3, 3); // Put some space between elements for nicer look
labelGBC.anchor = GridBagConstraints.WEST; // Align left within its cell
GridBagConstraints fieldGBC = new GridBagConstraints();
fieldGBC.gridwidth = GridBagConstraints.REMAINDER; // Last element of the row
fieldGBC.weightx = 1.0; // Cell takes up all extra horizontal space
fieldGBC.fill = GridBagConstraints.HORIZONTAL; // Fill the cell horizontally
fieldGBC.insets = new Insets(3, 3, 3, 3); // Put some space between elements for nicer look
String[] labels = { "To: ", "Cc: ", "Bcc: ", "Subject: " };
for (int i = 0; i < labels.length; i++) {
JLabel l = new JLabel(labels[i]);
JTextField f = new JTextField(50);
list.add(l, labelGBC);
list.add(f, fieldGBC);
}
GridBagConstraints taGBC = new GridBagConstraints();
taGBC.gridwidth = 2;
taGBC.weightx = 1.0; // Cell takes up all extra horizontal space
taGBC.weighty = 1.0; // Cell takes up all extra vertical space
taGBC.fill = GridBagConstraints.BOTH; // Fill cell in both direction
taGBC.insets = new Insets(3, 3, 3, 3); // Put some space between elements for nicer look
JTextArea textArea = new JTextArea(10, 80);
list.add(new JScrollPane(textArea), taGBC);

frame.pack();

frame.setVisible(true);
}

public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
new Mail().initUI();
}
});

}
}

结果

enter image description here

关于java - 边框布局未占用所有可用空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16016064/

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