我正在尝试定义扩展mx:VBox的自定义组件的内容区域。该组件具有预定义的页眉和页脚(可视子项),我想在中间设置区域以将子项添加到组件。该组件将使用如下:
<custom_component>
<mx:button/>
</custom_component>
我如何设置此内容区域?
答案 0 :(得分:7)
实际上有几个步骤。
所以你的自定义组件看起来像这样:
<?xml version="1.0" encoding="utf-8"?>
<mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml" width="400" height="300">
<mx:Metadata>
[DefaultProperty("content")]
</mx:Metadata>
<mx:HBox id="headerBox"/>
<mx:VBox id="contentBox"/>
<mx:HBox id="footerBox"/>
<mx:Script>
<![CDATA[
import mx.core.UIComponent;
private var _contentChildren:Array;
public function set content(c:*) : void {
// Allow 1 or more children to be specified
_contentChildren = (c as Array) || [c];
}
override protected function createChildren() : void {
// Call super so contentBox gets created first
super.createChildren();
for each (var child:UIComponent in _contentChildren) {
contentBox.addChild(child);
}
}
]]>
</mx:Script>
</mx:VBox>
答案 1 :(得分:1)
在自定义组件中,添加DefaultProperty元数据标记:
[DefaultProperty("nameOfDefaultProperty")]
然后你还要为该属性定义一个setter:
public function set nameOfDefaultProperty(value:UIComponent):void
{
if (value != null)
{
// add "value" to the display list here
}
}
答案 2 :(得分:0)
尝试使用画布?