Flash 构建器 (Flex) - 隐藏 UI 元素
嘿,如何在 Flash Builder 中隐藏元素?我可以做visible=false,但元素仍然存在(其他按钮不居中)。我正在寻找 display:none 样式属性。
<mx:HBox horizontalAlign="center">
<mx:Button id="publishButton" label="Start" />
<mx:Button label="Stop" visible="false" />
</mx:HBox>
谢谢!
Hey, how can I hide an element in Flash Builder? I can do visible=false but the element is still there (other buttons are not centered). I'm looking for display:none style property.
<mx:HBox horizontalAlign="center">
<mx:Button id="publishButton" label="Start" />
<mx:Button label="Stop" visible="false" />
</mx:HBox>
Thx!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
visible="false" includeInLayout="false",它们应该一起使用。
visible="false" includeInLayout="false", they should be used together.