相对于 JFrame 移动组件

发布于 2024-12-20 17:01:58 字数 201 浏览 1 评论 0原文

我有 4 个 JButton 设置在彼此下方。我希望当用户水平调整框架大小时它们左右移动。

例如:帧大小:400,400
ButtonLocation:300,200

现在我将框架大小调整为:600,400
ButtonLocation 应该是:500,200

知道如何实现这一点吗?

谢谢

I have 4 JButton setted underneath eachother. I want them to move right and left when the user resizes the frame horizontely.

eg: Frame size: 400,400
ButtonLocation: 300,200

Now I Resize the frame to : 600,400
ButtonLocation should be: 500,200

Any Idea how I can achieve this?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

陌上芳菲 2024-12-27 17:01:58

使用正确的布局管理器。例如 GridBagLayout,您可以在其中将每个按钮的填充和插入设置为 GridBagConstraints。

Use proper LayoutManager. E.g. GridBagLayout where you can set fill and Insets to GridBagConstraints for each button.

撩动你心 2024-12-27 17:01:58

要将 4 个按钮放在一起,请将它们放在一列中 GridLayout。要相对于框架的 RHS 移动,请将(带有 GridLayout 的面板)放入 BorderLayout

有关更多详细信息,请参阅使用布局管理器

To get 4 buttons underneath each other, put them in a single column GridLayout. To get then to move relative to the RHS of the frame, put the (panel with the GridLayout) into the EAST constraint of a BorderLayout.

See Using Layout Managers for more details.

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