将 JPanel 置于 JFrame 的中心
如何在不使用布局管理器的情况下将 JPanel 放在 JFrame 的中心?当然,我希望它对所有屏幕分辨率都是通用的。
谢谢, 托梅尔
How can I put my JPanel in the center of a JFrame without using a layout manager? I want it to be generic for all screen resolutions of course.
Thanks,
Tomer
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您不使用布局 (
setLayout(null)
),则需要计算JPanel
在JFrame
内的位置,例如:If you don't use layouts (
setLayout(null)
), you need to calculate the location of theJPanel
inside theJFrame
, like: