PyQt5 – 访问标签的工具提示持续时间 | ToolTipDuration方法

PyQt5 – 访问标签的工具提示持续时间 | ToolTipDuration方法

PyQt5为用户提供了使用setToolTip()方法制作工具提示,同时,我们也可以使用setToolTipDuration()方法为其设置时间长度。在这篇文章中,我们将看到如何访问标签工具提示的持续时间,为了做到这一点,我们将使用ToolTipDuration()方法。

语法: label.ToolTipDuration()

参数: 它不需要参数。

返回: 它返回整数,指的是毫秒。

代码。

# 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)
  
        # getting tool tip duration
        t = str(self.label_1.toolTipDuration())
  
        # creating a label widget
        self.label_2 = QLabel("label tool tip duration =" + t + "ms", self)
  
        # moving position
        self.label_2.move(0, 50)
  
        # adjust size
        self.label_2.adjustSize()
  
        # 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())

输出 :

PyQt5 - 访问标签的工具提示持续时间  ToolTipDuration方法

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程