Flex如何保证金按钮

时间:2013-04-29 09:32:19

标签: flex actionscript

<?xml version="1.0"?>
<!-- styles/TimeFormat.mxml -->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" backgroundColor="red">

    <mx:Style>
    Button
    {
        marginLeft: 500px;

    }

    </mx:Style>
    <mx:Button label="Start" />
</mx:Application>

marginLeft不起作用,如何将按钮从默认的中心移动到其他位置?

3 个答案:

答案 0 :(得分:3)

我尝试过风格并且有效:

enter image description here

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" 
            minWidth="955" minHeight="600">
<mx:Style>
    Button
    {
        left: 500px;
        top: 20px;
    }
</mx:Style>
<mx:Button label="Hello"/>
</mx:Application>

答案 1 :(得分:1)

Alternate you can add <mx:Spacer width="500"/>

答案 2 :(得分:0)

如果要移动按钮,请使用left或x属性:

<mx:Button label="Start" left="500" />