QAction自带的tooltip怎么隐藏?

发布于 2021-11-12 21:26:24 字数 49 浏览 835 评论 2

试过了让setToolTip里面为空字符,但是不管用,请问有什么方法让tooltip不弹出提示吗?

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

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

发布评论

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

评论(2

旧伤慢歌 2021-11-18 14:37:36

引用来自“精英王子”的答案

In order to show a tooltip on a QAction in a QMenuBar, one has to overload the event() method on the QMenuBar and look for an event of type QEvent::Tooltip. When it arrives, one can ask QMenuBar::activeAction() to know over which QAction the mouse pointer is, and then finally call QToolTip::showText on that QAction's tooltip.

http://www.qtcentre.org/threads/534-Tooltips-on-QActions

可能需要继承QAction类,重写event方法,过滤QEvent::Tooltip事件,用来自QToolTip的底层函数来关掉tooltip

http://qt-project.org/doc/qt-4.8/qtooltip.html

这个方法很复杂啊,也许有更简单的方法

悸初 2021-11-17 19:49:03

In order to show a tooltip on a QAction in a QMenuBar, one has to overload the event() method on the QMenuBar and look for an event of type QEvent::Tooltip. When it arrives, one can ask QMenuBar::activeAction() to know over which QAction the mouse pointer is, and then finally call QToolTip::showText on that QAction's tooltip.

http://www.qtcentre.org/threads/534-Tooltips-on-QActions

可能需要继承QAction类,重写event方法,过滤QEvent::Tooltip事件,用来自QToolTip的底层函数来关掉tooltip

http://qt-project.org/doc/qt-4.8/qtooltip.html

这个方法很复杂啊,也许有更简单的方法

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