Java 调整我的分割框大小
我有一个 jDialog,里面有一个分离器。
一侧有一棵树,另一侧有一个框架。每当我使用 setVisible(false) 隐藏框架时,拆分器都会调整大小以用树填充整个屏幕。
不管框架是否隐藏,是否有办法使分离器的树侧保持相同的大小?
I have a jDialog with a splitter inside it.
One side has a tree while the other side has a frame. Whenever I use setVisible(false) to hide the frame, the splitter resizes to filled the entire screen with the tree.
Is there anyway to keep the tree side of the splitter the same size whether the frame is hidden or not?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实现这一点的最简单方法是使用 BorderLayout 添加面板而不是“框架”,然后向其中添加框架。因此,当您隐藏“框架”面板时,它会保留并保持其大小。
The simplest way to accomplish that would be adding panel with BorderLayout instead of a "frame" and then adding frame to it. So when you hide the "frame" panel stays and keeps its size.