コンピューターに関する情報を表示する以下のコードがあります。
s:VGroupをs:Groupの中央に表示するのに問題があります。それは常にわずかに中心から外れています...もっと左右に。
グループを常にコンテナの中央に配置する方法はありますか?
私はhorizontalAlign="center"とhorizontalCenter="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>