flex Spark Buttonbar:如何确定 mouseOver 事件中的哪个按钮
re: spark.components.ButtonBar
在spark ButtonBar的mouseOver事件中,如何确定鼠标悬停在几个按钮中的哪一个上?当然,目前还没有选定的索引。如果有什么不同的话,我的 ButtonBar 不是在 MXML 中定义的,而是在 ActionScript 中实例化的,并且将 ArrayList 分配给我的 ButtonBar 实例的 dataProvider 属性。
感谢您的帮助。
re: spark.components.ButtonBar
In the spark ButtonBar's mouseOver event, how do you determine which of the several buttons the mouse is hovering over? There is, of course, no selected index at this juncture. If it makes a difference, my ButtonBar is not defined in MXML but is instantiated in ActionScript and an ArrayList is assigned to the dataProvider property of my ButtonBar instance.
Thanks for the help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果 Flex 4 没有真正简单/内置的方法可以做到这一点,我认为这是一件好事。相反,它们使您可以通过
ElementExistenceEvent.RENDERER_ADD
和ElementExistenceEvent.RENDERER_REMOVE
访问渲染器,以便您可以查找子项上的各种事件。试试这个:希望有帮助,
槊
There's no real easy/built-in way to do this if Flex 4, and I think that's a good thing. Instead, they give you access to the renderers via
ElementExistenceEvent.RENDERER_ADD
andElementExistenceEvent.RENDERER_REMOVE
, so you can look for all kinds of events on the children. Try this out:Hope that helps,
Lance
您只需使用 Spark 按钮栏的
itemRollOver
事件即可。You can simply use the
itemRollOver
event of the spark buttonbar.