Java中设置JTextField、JLabel和JButton的位置

发布于 2024-10-13 01:31:11 字数 111 浏览 2 评论 0原文

当我运行程序时,label textfieldbutton等随机排列(标签和按钮在同一行)。

如何明确设置布局?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

能怎样 2024-10-20 01:31:11

您使用哪种技术? 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

谜兔 2024-10-20 01:31:11

尝试使用 setBounds(x,y,length,heigth) 和 setLayout(null)。这样你就可以设置它的坐标。

Try to use the setBounds(x,y,length,heigth) and setLayout(null). So you can set its coordinates.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文