如何将垂直 JDialog 大小调整限制为对话框中的单个组件?
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是适当的 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.