将孩子绑定到s:TileGroup

时间:2013-02-14 14:10:26

标签: flex binding mxml

我的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绑定到容器中?

0 个答案:

没有答案