QPushButton 基于鼠标悬停事件显示/隐藏
我有一个关于 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.
Thanks,
Neel
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.