在 GridBagLayout 中动态更改组件权重

发布于 2024-10-16 12:07:23 字数 93 浏览 2 评论 0原文

假设现在 JPanel 中有一些组件,并且使用 GridBagLayout 排列布局。是否可以动态改变组件的重量(weightx或weighty)(例如按下按钮后)?谢谢。

Suppose now there are some components inside a JPanel and the layout is arranged using GridBagLayout. Is it possible to change the weight(weightx or weighty) of the components dynamically (e.g. after pressing a button)? Thank you.

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

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

发布评论

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

评论(1

愁以何悠 2024-10-23 12:07:23

使用新的 GridBagConstraint 删除并添加组件。之后调用

panel.revalidate();
panel.repaint();

使用方法获取当前约束 public GridBagConstraints getConstraints(Component comp)

Remove and add the component with a new GridBagConstraint. After that call

panel.revalidate();
panel.repaint();

Use the method to get current constraints public GridBagConstraints getConstraints(Component comp)

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