Flex:将组件隐藏在flex中

前端之家收集整理的这篇文章主要介绍了Flex:将组件隐藏在flex中前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我将一个组件设置为visible = false时,该组件将隐藏起来,但是如何让它占用空间(获取它所属的容器来调整大小)
<mx:HBox width="100%" height="100%">
...
</mx:HBox>

<mx:HBox width="100%" id="BoxAddComment" visible="false" >
    <mx:TextArea id="txtComment"/>
    <mx:Button label="Spara" click="addComment();"/>
</mx:HBox>

BoxAddComment可见= false时,我希望第一个HBox占据100%的高度.

解决方法

使用includeInLayout属性.例如

<mx:HBox width="100%" height="100%">
...
</mx:HBox>

<mx:HBox width="100%" id="BoxAddComment" visible="false" includeInLayout="false" >
    <mx:TextArea id="txtComment"/>
    <mx:Button label="Spara" click="addComment();"/>
</mx:HBox>
原文链接:https://www.f2er.com/flex/174338.html

猜你在找的Flex相关文章