将组容器高度设置为 0 不会隐藏其子项
我需要使用 myGroup.height = 0
调整 Group
的大小。 它有效,但 myGroup 的孩子仍然可见,我不知道为什么...... 有什么想法吗?
I need to resize a Group
using myGroup.height = 0
.
And it works, but myGroup's children are still visible, I do not know why...
Any idea ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该死的,我确实花了 4 个小时看答案,这太简单了...
将高度设置为 0 时隐藏组容器的内容,
set
clipAndEnableScrolling = true;
事实上,文档说:
如果为 true,则指定将子项剪辑到视口的边界。如果为 false,则无论组件的大小规范如何,容器子级都会超出容器边界。
Damn, i did look after the answer for 4 hours, and it was so easy...
To hide the content of a group container when setting the height to 0,
set
clipAndEnableScrolling = true;
Indeed, the doc says :
If true, specifies to clip the children to the boundaries of the viewport. If false, the container children extend past the container boundaries, regardless of the size specification of the component.