0

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

4

0 回答 0