Flex 组件生命周期:validateNow、validateDisplayList、invalidateDisplalList、commitProperties 等

发布于 2024-08-10 05:41:34 字数 120 浏览 2 评论 0 原文

我正在扩展 VBox 来制作日历组件。我应该重写什么方法来添加代码来绘制自身?所有这些方法有什么区别?我是否应该在每个项目中添加一些内容,或者是否有一种特定的方法我可以覆盖,添加我的绘图代码并使其工作?

谢谢!

I am extending VBox to make a Calendar component. What method should I override to add the code to draw itself? What is the difference between all these methods? Is there something I should be putting in each one, or is there a specific method I can just override, add my drawing code, and have it work?

Thanks!

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

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

发布评论

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

评论(5

_蜘蛛 2024-08-17 05:41:34

本白皮书也许是我见过的有关该主题的最佳信息来源。

This white-paper is perhaps the best source of information I have seen on the subject.

陪我终i 2024-08-17 05:41:34

Deepa 的 MAX 2008 演讲无疑是最好、最精彩的轻松理解有关该主题的演示。它准确地展示了如何在 Flex 3 中正确编写组件。

Deepa's MAX 2008 talk was easily the best and most easily understanding presentation on the topic. It shows exactly how to write components properly in Flex 3.

Bonjour°[大白 2024-08-17 05:41:34

我还推荐这篇文章:

http://maohao.wordpress.com/2009/02/02/6-steps-in-creating-custom-uicomponent-in-flex-halo-framework/

简而言之,如果您'在进行图形操作来绘制时,您需要使用覆盖 updateDisplayList() 并根据需要调用 invalidateDisplayList();如果您使用子组件,则将使用 commitProperties()/invalidateProperties()。如果您动态调整大小,则需要 measure()invalidateSize()

I also recommend this article:

http://maohao.wordpress.com/2009/02/02/6-steps-in-creating-custom-uicomponent-in-flex-halo-framework/

Briefly, if you're doing graphics operations to draw, you'll want to use override updateDisplayList() and call invalidateDisplayList() as necessary; if you're using subcomponents, you'll use commitProperties()/invalidateProperties(). If you're dynamically sized, you'll need measure() and invalidateSize().

漫雪独思 2024-08-17 05:41:34

重写 updateDisplayList 方法>UIComponent 并在其中进行绘图。使用组件的 unscaledWidthunscaledHeight 作为绘制的边界。

Override updateDisplayList method of UIComponent and do your drawing in it. Use the component's unscaledWidth and unscaledHeight as the bounds for drawing.

思慕 2024-08-17 05:41:34

来自 Adob​​e Flex 3 Live Docs 高级可视化组件ActionScript - 很棒的来源。

From Adobe Flex 3 Live Docs Advanced Visual Components in ActionScript - great source.

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