java GridLayout 组件大小

发布于 2024-11-18 12:09:20 字数 216 浏览 2 评论 0原文

我想制作一个包含自定义组件网格的 JPanel (使用 GridLayout)。一切都很好,但我对组件尺寸有疑问。组件大小每次都会增大或减小,因此所有组件的总尺寸会填充 JPanel 的区域。我希望内部组件具有标准尺寸,如果所有组件的总尺寸小于 JPanel 的尺寸,则将其留空,或者如果总尺寸大于 JPanel 的区域然后使用滚动窗格。

I want to make a JPanel (with GridLayout) that contains a grid of custom components. All is ok, but I have problem with the components size. The components size each time grows or diminishes so the total dimension of all the components fills the JPanel's region. I want the internal components have a standard size, and if the total dimension of all components is smaller than JPanel's dimension then leave it empty, or if the total dimension is bigger than the JPanel's region then use the scrollpane.

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

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

发布评论

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

评论(1

只想待在家 2024-11-25 12:09:20

请改用 GridBagLayout。或者您可以尝试重写 GridLayout 的方法

public void layoutContainer(Container parent)
public Dimension minimumLayoutSize(Container parent)
public Dimension preferredLayoutSize(Container parent)

Use GridBagLayout instead. Or you can try to override the GridLayout's methods

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