java GridLayout 组件大小
我想制作一个包含自定义组件网格的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请改用 GridBagLayout。或者您可以尝试重写 GridLayout 的方法
Use GridBagLayout instead. Or you can try to override the GridLayout's methods