使用默认值创建HBox组件

时间:2009-12-07 11:44:40

标签: flex actionscript-3 actionscript flex3

我想创建一个HBox组件;例如HLBox,其行为与HBox完全相同,但默认宽度和高度为100%。

我该怎么做?

1 个答案:

答案 0 :(得分:5)

创建一个HLBox.mxml文件并将以下代码添加到其中。

<!-- HLBox.mxml -->
<mx:HBox xmlns:mx="http://www.adobe.com/2006/mxml"
    width="100%" height="100%"/>

使用HLBox,就像使用HBox

一样
<HLBox>  
   <!-- Don't specify width or height attributes to HLBox tag, 
      it will overwrite the default ones -->
   <mx:Label text="something"/>
   <!-- other children -->
</HLBox>