如何将垂直 JDialog 大小调整限制为对话框中的单个组件?

发布于 2024-12-27 12:36:26 字数 189 浏览 4 评论 0原文

我有一个 JDialog,它由两个 JPanel 组成,一个位于另一个之上。目前,当我调整 JDialog 的大小时,只有底部面板在垂直方向上调整大小。但是,我只想调整顶部面板的大小。顶部面板包含的唯一组件是 JScrollPane,因此我希望任何垂直调整大小都会导致顶部面板内容的视图增大/减小。有什么好的方法可以做到这一点?

提前致谢! 埃莉斯

I have a JDialog that consists of two JPanels, one above the other. Currently, when I resize the JDialog only the bottom panel resizes in the vertical direction. However, I only want the top panel to resize. The only component that the top panel contains is a JScrollPane, so I want any vertical resizing to result in an increased/decreased view of the top panel's content. What is a good way to do this?

Thanks in advance!
elise

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

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

发布评论

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

评论(2

眼角的笑意。 2025-01-03 12:36:26

,我只想调整顶部面板的大小

dialog.add(topPanel, BorderLayout.CENTER);
dialog.add(anotherPanel, BorderLayout.SOUTH);

, I only want the top panel to resize

dialog.add(topPanel, BorderLayout.CENTER);
dialog.add(anotherPanel, BorderLayout.SOUTH);
2025-01-03 12:36:26

这是适当的 LayoutManger 的工作。 Here 是一个很好的链接,它直观地解释了 LayoutManagers,而且效果很好出色地。

This is a job for the proper LayoutManger. Here is a good link that explains LayoutManagers visually and does it quite well.

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