Java中设置JTextField、JLabel和JButton的位置
当我运行程序时,label
textfield
和button
等随机排列(标签和按钮在同一行)。
如何明确设置布局?
When i run the program, the label
textfield
and button
and so on are arranged randomly (label and button are in same line).
How do I explicitly set the layout?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您使用哪种技术? Java 摇摆?然后我可以向您推荐以下手册:
http://download. oracle.com/javase/tutorial/uiswing/layout/using.html#set
您应该使用所谓的“布局管理器”,它支持您排列不同的标签、字段等。
问候
which technology do you use? Java Swing? Then I can recommend you the following manual:
http://download.oracle.com/javase/tutorial/uiswing/layout/using.html#set
You should work with so called "Layout Managers", which support you in arranging different labels, fields and so on.
greets
尝试使用 setBounds(x,y,length,heigth) 和 setLayout(null)。这样你就可以设置它的坐标。
Try to use the
setBounds(x,y,length,heigth)
andsetLayout(null)
. So you can set its coordinates.