何时将mxml声明中的属性提交给对象?

时间:2010-02-01 21:44:52

标签: flex actionscript-3 mxml

如果我这样做:

<myComponent id="foo" title="bar" />

组件中的参数似乎不会立即可用。当时,它们可用吗?

2 个答案:

答案 0 :(得分:2)

来自Flex Docs:。

Flex dispatches the creationComplete event once for a component after the component is created and initialized.

创建并初始化组件后,您可以使用其属性。请记住,所有子组件都是在父母之前创建和初始化的。

答案 1 :(得分:0)

creationComplete将在所有部件完成后发送。