我正在使用Flex 4 Spark Components。
我有一个比某个容器大的自定义组件,我需要它在该容器中居中。最好只使用MXML,样式和属性
这不能按预期工作:
<s:BorderContainer x="300" y="300" width="200" height="200">
<s:Button label="Not centered" horizontalCenter="0" verticalCenter="0" width="300" height="250"/>
</s:BorderContainer>
谢谢!
答案 0 :(得分:1)
知道了。
我注意到在示例中使用整个Application作为Container,即使大于舞台,Component也会居中。我不能使用另一个Application,所以在上面的例子中我使用了下一个继承的类:SkinnableContainer,而不是BorderContainer。它运作正常