PyQt5 – 为状态栏设置工具提示持续时间
在这篇文章中,我们将看到如何设置工具提示持续时间。我们可以使用状态栏对象的setToolTip方法来设置工具提示,但默认情况下,工具提示在一段时间后不会自动消失。我们可以通过使用状态栏对象的setToolTipDuration方法来设置这个消失的时间。
语法: self.statusBar().setToolTipDuration(ms)
参数: 它使用整数作为参数,代表毫秒
执行的操作: 它为状态栏的工具提示设置时间长度。
代码。
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 the geometry of window
self.setGeometry(60, 60, 600, 400)
# setting status bar message
self.statusBar().showMessage("This is status bar")
# setting border
self.statusBar().setStyleSheet("border :3px solid black;")
# setting tool tip for status bar
self.statusBar().setToolTip("Hello ! from status bar")
# setting tool tip duration
self.statusBar().setToolTipDuration(500)
# creating a label widget
self.label_1 = QLabel("status bar", self)
# moving position
self.label_1.move(100, 100)
# setting up the border
self.label_1.setStyleSheet("border :1px solid blue;")
# resizing label
self.label_1.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())
输出:

这个工具提示将在500毫秒后消失,即5秒。
极客教程