PyQt5 – 如何设置标签的工具提示时间 | setToolTipDuration方法
在PyQt5中,有一个选项可以使用setToolTip()方法设置工具提示,
工具提示 或 信息 提示或 提示是一个常见的图形用户界面元素。它与一个光标(通常是一个指针)一起使用。用户将指针悬停在一个项目上,而不去点击它,工具提示就会以一个小的 “悬停框 “的形式出现,上面有关于被悬停的项目的信息。
默认情况下,工具提示是没有时间限制的,即提示应该出现多长时间。在这篇文章中,我们将看到如何为一个标签设置工具提示时间。为了做到这一点,我们将使用setToolTipDuration()方法。
语法: label.setToolTipDuration(ms)
参数: 它以整数作为参数,指的是毫秒。
执行的动作: 它设置标签工具提示的时间长度。
代码:
# 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())
输出 :