Flex 3面板标题图标点击事件
我想向面板添加标题图标图像,但找不到该图标上的单击事件,
I would like to add an title Icon image to a Panel, but cant find the click event on that icon,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Panel
类的titleIconObject
被声明为mx_internal
变量,因此如果您想用它做任何事情,您可能必须扩展 Panel并覆盖它以及引用它的一些方法。编辑以包含我的评论中的更多信息:
@seismael:实际上,经过进一步审查,更好的方法是覆盖 commitProperties 并在那里处理它。打开 SDK 中的 Panel 类并查找以 if (_titleIconChanged) 开头的部分(在当前 SDK 中我使用的是第 1168 行)。只需执行 super.commitProperties() ,然后调整条件块以添加 _titleIcon 等的事件侦听器
The
titleIconObject
of thePanel
class is declared as anmx_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