如何对齐“标签:”后面跟着一个RadioButtonGroup?

发布于 2024-12-02 04:57:22 字数 904 浏览 1 评论 0原文

请告诉我,如何在 Flex 4.5 中对齐标签和单选按钮:

在此处输入图像描述

RadioTest.mxml:

<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
               xmlns:s="library://ns.adobe.com/flex/spark" 
               xmlns:mx="library://ns.adobe.com/flex/mx" 
               minWidth="955" minHeight="600">

    <fx:Declarations>
        <s:RadioButtonGroup id="_group" itemClick=""/>
    </fx:Declarations>

    <s:HGroup>
        <s:Label text="Playing tables:" verticalAlign="bottom" />
        <s:RadioButton groupName="_group" label="All" />
        <s:RadioButton groupName="_group" label="Vacant" />
        <s:RadioButton groupName="_group" label="Full" />
    </s:HGroup>
</s:Application>

必须有一些标准方法......

Please advise me, how to align Label followed by RadioButtons in Flex 4.5:

enter image description here

RadioTest.mxml:

<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
               xmlns:s="library://ns.adobe.com/flex/spark" 
               xmlns:mx="library://ns.adobe.com/flex/mx" 
               minWidth="955" minHeight="600">

    <fx:Declarations>
        <s:RadioButtonGroup id="_group" itemClick=""/>
    </fx:Declarations>

    <s:HGroup>
        <s:Label text="Playing tables:" verticalAlign="bottom" />
        <s:RadioButton groupName="_group" label="All" />
        <s:RadioButton groupName="_group" label="Vacant" />
        <s:RadioButton groupName="_group" label="Full" />
    </s:HGroup>
</s:Application>

There must be some standard approach to this...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

无风消散 2024-12-09 04:57:22

只需将 verticalAlign="baseline" 添加到 HGroup 即可:

<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
    xmlns:s="library://ns.adobe.com/flex/spark" 
    xmlns:mx="library://ns.adobe.com/flex/mx" 
    minWidth="955" minHeight="600">

    <fx:Declarations>
        <s:RadioButtonGroup id="_group" itemClick=""/>
    </fx:Declarations>

    <s:HGroup verticalAlign="baseline">
        <s:Label text="Playing tables:" verticalAlign="bottom" />
        <s:RadioButton groupName="_group" label="All" />
        <s:RadioButton groupName="_group" label="Vacant" />
        <s:RadioButton groupName="_group" label="Full" />
    </s:HGroup>
</s:Application>

Just add verticalAlign="baseline" to the HGroup:

<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
    xmlns:s="library://ns.adobe.com/flex/spark" 
    xmlns:mx="library://ns.adobe.com/flex/mx" 
    minWidth="955" minHeight="600">

    <fx:Declarations>
        <s:RadioButtonGroup id="_group" itemClick=""/>
    </fx:Declarations>

    <s:HGroup verticalAlign="baseline">
        <s:Label text="Playing tables:" verticalAlign="bottom" />
        <s:RadioButton groupName="_group" label="All" />
        <s:RadioButton groupName="_group" label="Vacant" />
        <s:RadioButton groupName="_group" label="Full" />
    </s:HGroup>
</s:Application>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文