我的MXML在TileGroup
内显示三个孩子的时刻。
<s:TileGroup width="90%">
<admin:MyComponent width="300" height="150" serviceID="101" />
<admin:MyComponent width="300" height="150" serviceID="102" />
<admin:MyComponent width="300" height="150" serviceID="103" />
</s:TileGroup>
我想要做的是提供一个Array
个子元素,然后将这些元素绑定到TileGroup
:
[Bindable]
private function get arrayOfChildren() :Array{
return [
new MyComponent(),
new MyComponent(),
new MyComponent(),
];
}
如何将arrayOfChildren
绑定到容器中?