FLEX:是“工具提示”如果我想要带有按钮的标题,有一个选项吗?

发布于 2024-08-31 18:39:27 字数 155 浏览 3 评论 0原文

如果我想要带有按钮的标题,“工具提示”是一个选项吗?

实际上,我需要在对象顶部添加淡入标题,而不更改其宽度。 (我想没有直接将淡入标题添加到 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 技术交流群。

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

发布评论

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

评论(2

〗斷ホ乔殘χμё〖 2024-09-07 18:39:27

无法单击工具提示。如果您需要弹出用户可以与之交互的其他类型的容器,您应该使用 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.

画中仙 2024-09-07 18:39:27

没有工具提示不是一个选项。它用于显示一些标题。

//dataTipFunction

public function dtFunc(hd:HitData):String {
        return hd.item;
}

现在,如果您希望标题上有可点击的内容,您可以在要显示的内容上显示自定义标题。您需要创建一个组件并重写 updateDisplayList 方法,

 override protected function
        updateDisplayList(unscaledWidth:Number,unscaledHeight:Number):void {
}

该方法将确保您的组件是什么样子,然后您需要使用 invalidateDisplayList();以及重新绘制组件时组件的行为应该是什么的其他方法。

No tooltip is not an option. Its used to display some caption.

//dataTipFunction

public function dtFunc(hd:HitData):String {
        return hd.item;
}

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

 override protected function
        updateDisplayList(unscaledWidth:Number,unscaledHeight:Number):void {
}

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.

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