我是靠谱客的博主 故意奇异果,最近开发中收集的这篇文章主要介绍Flex中如何通过includeInLayout和visible属性设置Form显示或隐藏,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
<?xml version="1.0" encoding="utf-8"?>
<mx:Application name="FormItem_includeInLayout_test1"
xmlns:mx=" http://www.adobe.com/2006/mxml"
layout="vertical"
verticalAlign="middle"
backgroundColor="white">
<mx:Style>
Form {
indicatorGap: 0;
paddingLeft: 0;
paddingRight: 0;
paddingTop: 0;
paddingBottom: 0;
}
</mx:Style>
<mx:ApplicationControlBar dock="true">
<mx:Button id="textButton"
label="Show Text 1"
toggle="true"
selected="false" />
</mx:ApplicationControlBar>
<mx:HBox width="100%">
<mx:Form width="100%">
<mx:FormItem label="To:" width="100%">
<mx:TextInput id="toTextInput1"
width="100%" />
</mx:FormItem>
<mx:FormItem label="Text 1:"
includeInLayout="{textButton.selected}"
visible="{textButton.selected}"
width="100%">
<mx:TextInput id="TextInput2"
width="100%" />
</mx:FormItem>
</mx:Form>
</mx:HBox>
</mx:Application>
<mx:Application name="FormItem_includeInLayout_test1"
xmlns:mx=" http://www.adobe.com/2006/mxml"
layout="vertical"
verticalAlign="middle"
backgroundColor="white">
<mx:Style>
Form {
indicatorGap: 0;
paddingLeft: 0;
paddingRight: 0;
paddingTop: 0;
paddingBottom: 0;
}
</mx:Style>
<mx:ApplicationControlBar dock="true">
<mx:Button id="textButton"
label="Show Text 1"
toggle="true"
selected="false" />
</mx:ApplicationControlBar>
<mx:HBox width="100%">
<mx:Form width="100%">
<mx:FormItem label="To:" width="100%">
<mx:TextInput id="toTextInput1"
width="100%" />
</mx:FormItem>
<mx:FormItem label="Text 1:"
includeInLayout="{textButton.selected}"
visible="{textButton.selected}"
width="100%">
<mx:TextInput id="TextInput2"
width="100%" />
</mx:FormItem>
</mx:Form>
</mx:HBox>
</mx:Application>
最后
以上就是故意奇异果为你收集整理的Flex中如何通过includeInLayout和visible属性设置Form显示或隐藏的全部内容,希望文章能够帮你解决Flex中如何通过includeInLayout和visible属性设置Form显示或隐藏所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复