2、可以用setBounds(x,y,width,height),其中x,y为组件左上角顶点相对于父窗口的X,Y坐标;width、height为组件的宽和高
3、想要拖动,可以安装一个windowsbuilder editor插件
先将窗体的Layout属性设置成AnchorLayout例:
AnchorLayout layout = new AnchorLayout()
this.setLayout(layout)
在设置标签的Bounds属性,它的参数有4个,分别是:X坐标,Y坐标,长度,宽度
例:
JTextArea jTextArea = new JTextArea()
jTextArea.setBounds(0, 0, 200, 30)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)