一些旁注:
- 通过将 UI 初始化包装在一个
SwingUtilities.invokeLater
JTextField
为 a 指定列数,为 a 指定行数和列数总是一个好主意JTextArea
setSize()
如果你在之后打电话,打电话是没用的pack()
。一般来说,忘记setSize()/setLocation/setBounds()
在任何 Swing 组件上使用(将所有这些留给 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();
}
});
}
}
结果