FLEX:是“工具提示”如果我想要带有按钮的标题,有一个选项吗?
如果我想要带有按钮的标题,“工具提示”是一个选项吗?
实际上,我需要在对象顶部添加淡入标题,而不更改其宽度。 (我想没有直接将淡入标题添加到 MXML 组件中。
我想知道是否可以使用工具提示来实现此目的。可以单击它吗?并向其中添加自定义组件?
谢谢
is "Tooltip" an option if I want a caption with buttons ?
I actually need to add a fading-in caption on top of my object without changing its width. (I guess not adding directly the faded-in caption to the MXML component.
I was wondering if Tooltip can be used for this. Is possible to click on it ? And add custom components to it ?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
无法单击工具提示。如果您需要弹出用户可以与之交互的其他类型的容器,您应该使用 PopupManager。
It's not possible to click on a tooltip. If you need to pop up some other kind of container that the user can interact with, you should use the PopupManager.
没有工具提示不是一个选项。它用于显示一些标题。
现在,如果您希望标题上有可点击的内容,您可以在要显示的内容上显示自定义标题。您需要创建一个组件并重写 updateDisplayList 方法,
该方法将确保您的组件是什么样子,然后您需要使用 invalidateDisplayList();以及重新绘制组件时组件的行为应该是什么的其他方法。
No tooltip is not an option. Its used to display some caption.
Now you can show the custom caption on what you want to display, if you want a clickable thing on your caption. You need to create a component and over ride updateDisplayList Method
This method will make sure how your component is like, then you need to play with the invalidateDisplayList(); and other methods on when re drawing your components what your components behavior should be.