3

我试图在我的 VGroup 中将我的标签放在我的图像下方。标签现在左对齐,似乎 Horizo​​ntalAlign 不适用于 spark 组件。任何人都知道如何解决它?

<?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>
        <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <s:VGroup width="800">

        <mx:Image source="images/big/city1.jpg"/>
        <s:Label text="test1" horizontalCenter="0" /> //doesn't work....:(
        <s:Label text="test2" />


    </s:VGroup>

</s:Application>
4

1 回答 1

6

尝试这个,

<s:Label text="test1" width="100%" textAlign="center" />

您需要指定 Label 的宽度才能使其对齐生效。

于 2010-05-26T06:32:01.890 回答