Adobe Flex 能够根据角色在同一位置显示复选框或单选按钮

发布于 2024-09-05 17:47:22 字数 527 浏览 6 评论 0原文

我想这是一个基本问题,但我找不到解决方案。

我想根据用户角色在同一位置显示复选框按钮。我该怎么办呢。我无法为单选按钮和按钮指定相同的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

荒岛晴空 2024-09-12 17:47:22

includeInLayout 属性就是您想要的:

<mx:CheckBox label="CheckBox"  visible="{role}" includeInLayout="{role}"/>
<mx:Button label="Button" visible="{!role}" includeInLayout={!role}/>

如果此属性设置为 false,则相关控件将不会“占用 HBox 中的空间”。

The includeInLayout property is what you want:

<mx:CheckBox label="CheckBox"  visible="{role}" includeInLayout="{role}"/>
<mx:Button label="Button" visible="{!role}" includeInLayout={!role}/>

If this property is set to false, then the control in question won't "take up space" in your HBox.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文