Flex -creationComplete 和 ApplicationComplete 事件之间的区别?

发布于 2024-11-07 09:04:01 字数 84 浏览 2 评论 0原文

各位,

我不明白这两个事件之间的区别。

他们有什么区别?
用eg 进行解释将永远受到赞赏。

谢谢。

Folks,

I didn't get the difference between those two event.

What is the difference between them ?
Explanation with e.g will always be appreciated.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

千秋岁 2024-11-14 09:04:01

http://help.adobe.com/en_US/flex/using/WS2db454920e96a9e51e63e3d11c0bf69084-7ee6.html

每个组件都会在应用程序启动期间分派一条creationComplete消息 - 如果它要在启动时创建。否则,每个组件都会在实际创建消息时调度该消息。

从上面的文档链接:

创建完所有组件后
绘制的应用程序对象
分派应用程序完成
事件。这是最后一次活动
在申请期间发送
启动。

*编辑以反映除应用程序启动上下文之外的其他时间调度creationComplete事件。

http://help.adobe.com/en_US/flex/using/WS2db454920e96a9e51e63e3d11c0bf69084-7ee6.html

Each component dispatches a creationComplete message during application startup - if it is meant to be created at startup. Otherwise each component will dispatch the message whenever it is actually created.

From the documentation link above:

After all components are created and
drawn, the Application object
dispatches an applicationComplete
event. This is the last event
dispatched during an application
startup.

*Edited to reflect other times when creationComplete events get dispatched, besides just the context of application startup.

め可乐爱微笑 2024-11-14 09:04:01

请参阅此链接完整的解释。此外,creationComplete 由每个 Flex 组件分派,但 applicationComplete 仅由 Application 本身分派一次。

See this link with the full explanation. In addition, creationComplete is dispatched by every Flex component but applicationComplete dispatched only one time by Application itself.

我不咬妳我踢妳 2024-11-14 09:04:01

创建完成和应用程序完成都是 Flex 应用程序生命周期的一部分。有关更多信息和示例,您可以访问以下链接:

http://technobytz.com/flex-preinitialize。 html

Both the Creationcomplete and application complete is part of the flex application life cycle. For more information and examples you can go to the following link:

http://technobytz.com/flex-preinitialize.html

深陷 2024-11-14 09:04:01

另一个重要的区别是,在调度 applicationComplete 之前,您的应用程序没有对阶段的引用

Another important difference is your application doesn't have a reference to the stage until the applicationComplete is dispatched

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文