JTextField怎么设置宽度,例如原来默认的宽度是10个像素,我想设置成20
发布网友
发布时间:2022-06-12 11:35
我来回答
共4个回答
热心网友
时间:2023-10-09 03:37
setsize()括号里面写入希望的宽度就行了
热心网友
时间:2023-10-09 03:37
public class nn extends JApplet{
JTextField t1=new JTextField();
public void init(){
t1.setBounds(x, y, width, height)
}
}
x y是坐标,后面是宽度和高度
热心网友
时间:2023-10-09 03:37
请参考
voidsetColumns(int columns)
Sets the number of columns in this TextField, and then invalidate the layout.
热心网友
时间:2023-10-09 03:38
支持二楼