En este artículo, veremos cómo configurar la información sobre herramientas en una barra de progreso. La información sobre herramientas es básicamente una sugerencia que se muestra en la pantalla cuando el cursor se desplaza sobre la barra de progreso. setToolTip
La información sobre herramientas se utilizará básicamente para informar al usuario sobre el porcentaje o cuánto tiempo queda para completar, con el fin de establecer el método de información sobre herramientas que usamos .
Sintaxis: bar.setToolTip(texto)
Argumento: Toma una string como argumento.
Acción realizada: establecerá la información sobre herramientas en la barra de progreso.
A continuación se muestra la implementación.
# importing libraries from PyQt5.QtWidgets import * from PyQt5 import QtCore, QtGui from PyQt5.QtGui import * from PyQt5.QtCore import * import sys class Window(QMainWindow): def __init__(self): super().__init__() # setting title self.setWindowTitle("Python ") # setting background color to window # self.setStyleSheet("background-color : yellow") # setting geometry self.setGeometry(100, 100, 600, 400) # calling method self.UiComponents() # showing all the widgets self.show() # method for widgets def UiComponents(self): # creating progress bar bar = QProgressBar(self) # setting geometry to progress bar bar.setGeometry(200, 100, 200, 30) # setting the value value = 70 bar.setValue(value) # setting alignment to center bar.setAlignment(Qt.AlignCenter) # setting tool tip bar.setToolTip("Percentage is currently at " + str(value)) App = QApplication(sys.argv) # create the instance of our Window window = Window() # start the app sys.exit(App.exec())
Producción :
Publicación traducida automáticamente
Artículo escrito por rakshitarora y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA