📌  相关文章
📜  PyQt5 – 如何为标签设置工具提示持续时间 | setToolTipDuration 方法

📅  最后修改于: 2022-05-13 01:55:46.741000             🧑  作者: Mango

PyQt5 – 如何为标签设置工具提示持续时间 | setToolTipDuration 方法

在 PyQt5 中,有一个使用setToolTip () 方法设置工具提示的选项,工具提示或信息提示或提示是常见的图形用户界面元素。它与游标(通常是指针)结合使用。用户将指针悬停在项目上,而不单击它,并且工具提示可能会显示为一个小的“悬停框”,其中包含有关悬停项目的信息。
默认情况下,工具提示没有时间限制,即提示应该出现多长时间。在本文中,我们将了解如何为标签设置工具提示持续时间。为此,我们将使用 setToolTipDuration() 方法。

代码 :

Python3
# importing the required libraries
 
from PyQt5.QtCore import *
from PyQt5.QtGui import *
from PyQt5.QtWidgets import *
import sys
 
 
class Window(QMainWindow):
    def __init__(self):
        super().__init__()
 
 
        # set the title
        self.setWindowTitle("Python")
 
        # setting geometry
        self.setGeometry(100, 100, 600, 400)
        # creating a label widget
        self.label_1 = QLabel("Label", self)
 
        # moving position
        self.label_1.move(0, 0)
 
        # setting up the border
        self.label_1.setStyleSheet("border :3px solid black;")
 
        # setting label tool tip
        self.label_1.setToolTip("It is for 5 seconds")
 
        # setting time duration
        self.label_1.setToolTipDuration(500)
 
        # show all the widgets
        self.show()
 
 
# create pyqt5 app
App = QApplication(sys.argv)
 
# create the instance of our Window
window = Window()
 
# start the app
sys.exit(App.exec())


输出 :

pyqt 工具提示标签