手动将 JComponent 放置在 JPanel 内
我想以编程方式将 JLabel 移动到 JPanel 内的特定位置。我尝试过 setLocation(int x, int y) ,但它不起作用。 我试图不使用任何布局管理器。
I want to programmatically move my JLabel to a specific location inside my JPanel. I have tried setLocation(int x, int y)
, but it doesn't work.
I am trying to not use any layout manager.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个关于如何在不使用布局管理器的情况下布局组件的精彩教程。
http://java.sun.com/docs/books/tutorial /uiswing/layout/none.html
Here is a great tutorial on how to layout your components without using a layout manager.
http://java.sun.com/docs/books/tutorial/uiswing/layout/none.html