0

コンピューターに関する情報を表示する以下のコードがあります。

s:VGroupをs:Groupの中央に表示するのに問題があります。それは常にわずかに中心から外れています...もっと左右に。

グループを常にコンテナの中央に配置する方法はありますか?

私はhorizo​​ntalAlign="center"とhorizo​​ntalCenter="center"の両方を試しましたが、どちらもその要素の水平位置には影響しません。

ありがとう!

    <s:Group horizontalCenter="center" width="100%" top="10">
    <s:Rect x="0" y="0"  
            radiusX="4" radiusY="4" 
            height="100%" width="90%" left="10">
    </s:Rect>
    <s:VGroup top="20" left="20" bottom="20" right="20">
        <s:Label id="lblCPU"  text="{data.CPU}"/>
        <s:HGroup>
            <s:Label id="lblmodel"  text="{data.model}"/>
            <s:Label id="lblmemory"   text="{data.memory}"/>
        </s:HGroup>
        <s:Label id="lblHDD"  text="{data.HDD}"/>
        <s:Label id="lblUSB" text="{data.USB}"/>
    </s:VGroup>
</s:Group>
4

1 に答える 1

2
<s:Group x="435" y="77" width="200" height="200">
        <s:layout>
            <s:BasicLayout/>
        </s:layout>
        <s:VGroup width="50" height="50" horizontalCenter="0" verticalCenter="0">
        </s:VGroup>
</s:Group>
于 2012-05-09T20:30:13.473 に答える