我想创建一个HBox组件;例如HLBox,其行为与HBox完全相同,但默认宽度和高度为100%。
我该怎么做?
答案 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>