如何访问可绑定 Flex 对象的隐式事件调度程序?
如果我创建一个像这样的对象:
class Foo {
[Bindable] public var property: String;
}
Foo 类有一个隐式事件调度程序来处理属性更改事件。如何在不使 Foo
显式扩展 EventDispatcher
的情况下访问它?
If I create an object like so:
class Foo {
[Bindable] public var property: String;
}
The class Foo
has an implicit event dispatcher to handle property change events. How can I access that without making Foo
explicitly extend EventDispatcher
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果将
-keep
参数添加到编译行,您将能够看到它生成的内容。但为了快速解释它,您可以像处理常规EventDisaptcher
一样处理它。因此,在您的主文件中,您可以粘贴以下内容:
将打印出:
If you add the
-keep
parameter to your compile line you will be able to see what it generates. But to explain it quickly you can just handle it like it would be a regularEventDisaptcher
.So in your main file you can paste this:
Will print out: