Flex 3面板标题图标点击事件

发布于 2024-09-12 10:46:03 字数 35 浏览 8 评论 0原文

我想向面板添加标题图标图像,但找不到该图标上的单击事件,

I would like to add an title Icon image to a Panel, but cant find the click event on that icon,

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

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

发布评论

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

评论(1

伪装你 2024-09-19 10:46:03

Panel 类的 titleIconObject 被声明为 mx_internal 变量,因此如果您想用它做任何事情,您可能必须扩展 Panel并覆盖它以及引用它的一些方法。

编辑以包含我的评论中的更多信息:

@seismael:实际上,经过进一步审查,更好的方法是覆盖 commitProperties 并在那里处理它。打开 SDK 中的 Panel 类并查找以 if (_titleIconChanged) 开头的部分(在当前 SDK 中我使用的是第 1168 行)。只需执行 super.commitProperties() ,然后调整条件块以添加 _titleIcon 等的事件侦听器

The titleIconObject of the Panel class is declared as an mx_internal variable, so if you want to do anything with it you will probably have to extend Panel and override it and some of the methods that reference it.

EDITED TO INCLUDE FURTHER INFORMATION FROM MY COMMENT:

@seismael: Actually, upon further review, a better way would be to override commitProperties and handle it there. Open up the Panel class in the SDK and look for the section beginning if (_titleIconChanged) (in the current SDK I'm using it's line 1168). Just do super.commitProperties() and then adjust that conditional block to add your event listener for _titleIcon, etc

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