QPushButton 基于鼠标悬停事件显示/隐藏

发布于 2024-12-22 00:13:52 字数 220 浏览 1 评论 0原文

我有一个关于 QPushButton 的问题。

我希望 QPushButton 的行为只有当焦点位于 QPushButton 上时才显示,当焦点离开时它应该隐藏。下面是带有“查看”按钮的图像,仅当焦点位于 QPushButton 上时才显示。

在此处输入图像描述

谢谢, 尼尔

I have one question regarding the QPushButton.

i want the QPushButton behaviour in such a way that it should be shown only when the focus is there on QPushButton, and when the focus is out then it should hide. Below is the image that have "View" button, it displayed only when the focus is there on the QPushButton.

enter image description here

Thanks,
Neel

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

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

发布评论

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

评论(1

美人迟暮 2024-12-29 00:13:52

QWidget 的子类。

创建一个 QPushButton 成员。

覆盖 QWidget::enterEvent 和 QWidget::leaveEvent 受保护方法以显示/ 隐藏 QPushButton。

覆盖 QWidget::resizeEvent 来调整 QPushButton 的大小。

Subclass QWidget.

Create a QPushButton member.

Override the QWidget::enterEvent and QWidget::leaveEvent protected methods to show / hide the QPushButton.

Override the QWidget::resizeEvent to resize the QPushButton.

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