Adobe Flex 能够根据角色在同一位置显示复选框或单选按钮
我想这是一个基本问题,但我找不到解决方案。
我想根据用户角色在同一位置显示复选框或按钮。我该怎么办呢。我无法为单选按钮和按钮指定相同的 x 和 y 位置,因为我不知道应用程序中的位置。有没有其他方法可以让我只显示一个基于布尔值的组件。
示例代码:
<mx:HBox x="272" y="93" width="300" borderThickness="2" borderColor="0x000000" borderStyle="solid">
<mx:CheckBox label="CheckBox" visible="{role}"/>
<mx:Button label="Button" visible="{!role}"/>
</mx:HBox>
<mx:Script>
<![CDATA[
var role:Boolean=true;
]]>
</mx:Script>
I guess this is a basic question but I could not find the solution.
I want to display checkbox or button at the same position based on user role. How can I do this. I cannot give x and y position same for both radio button and button as I will not know the location in my application. Is there any other way by which I can display only one component based on boolean value.
Sample code:
<mx:HBox x="272" y="93" width="300" borderThickness="2" borderColor="0x000000" borderStyle="solid">
<mx:CheckBox label="CheckBox" visible="{role}"/>
<mx:Button label="Button" visible="{!role}"/>
</mx:HBox>
<mx:Script>
<![CDATA[
var role:Boolean=true;
]]>
</mx:Script>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
includeInLayout
属性就是您想要的:如果此属性设置为 false,则相关控件将不会“占用 HBox 中的空间”。
The
includeInLayout
property is what you want:If this property is set to false, then the control in question won't "take up space" in your HBox.