如何在Java Swing中控制JTextFields的宽度?
2022-09-01 16:39:38
我试图在一行上有多个JTextFields,但我不希望它们具有相同的宽度。如何控制宽度并使其中的一些比其他宽度更宽?我希望它们一起占据总宽度的100%,所以如果我可以使用某种weigthing,那就太好了。
我已经尝试过了,但它没有意义。.setColumns()
下面是一个示例,其中我使用三行和三个字符串,这些字符串应显示在列中:
import java.awt.GridLayout;
import javax.swing.BoxLayout;
import javax.swing.JComponent;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JTextField;
public class RowTest extends JPanel {
class Row extends JComponent {
public Row(String str1, String str2, String str3) {
this.setLayout(new BoxLayout(this, BoxLayout.X_AXIS));
JTextField fld1 = new JTextField(str1);
JTextField fld2 = new JTextField(str2);
JTextField fld3 = new JTextField(str3);
fld1.setColumns(5); // makes no sense
this.add(fld1);
this.add(fld2);
this.add(fld3);
}
}
public RowTest() {
this.setLayout(new GridLayout(5,0));
this.add(new Row("Short", "A long text that takes up more space",
"Short again"));
this.add(new Row("Longer but short", "Another long string", "Short"));
this.add(new Row("Hello", "The long field again",
"Some info"));
}
public static void main(String[] args) {
new JFrame() {{ this.getContentPane().add(new RowTest());
this.pack(); this.setVisible(true); }};
}
}