PyQt5 QProgressBar – ¿Cómo crear una barra de progreso?

En este artículo veremos cómo podemos crear la barra de progreso en PyQt5. Para crear un objeto de barra de progreso, usaremos QProgressBar.

Una barra de progreso es un elemento de control gráfico que se utiliza para visualizar la progresión de una operación informática extendida, como una descarga, transferencia de archivos o instalación. A veces, el gráfico va acompañado de una representación textual del progreso en formato de porcentaje.

Sintaxis:

pbar = QProgressBar(self)

Código:

# importing libraries
from PyQt5.QtWidgets import * 
from PyQt5.QtGui import * 
from PyQt5.QtCore import * 
import sys
import time
  
class Example(QWidget):
  
    def __init__(self):
        super().__init__()
  
        # calling initUI method
        self.initUI()
  
    # method for creating widgets
    def initUI(self):
  
        # creating progress bar
        self.pbar = QProgressBar(self)
  
        # setting its geometry
        self.pbar.setGeometry(30, 40, 200, 25)
  
        # creating push button
        self.btn = QPushButton('Start', self)
  
        # changing its position
        self.btn.move(40, 80)
  
        # adding action to push button
        self.btn.clicked.connect(self.doAction)
  
        # setting window geometry
        self.setGeometry(300, 300, 280, 170)
  
        # setting window action
        self.setWindowTitle("Python")
  
        # showing all the widgets
        self.show()
  
    # when button is pressed this method is being called
    def doAction(self):
  
        # setting for loop to set value of progress bar
        for i in range(101):
  
            # slowing down the loop
            time.sleep(0.05)
  
            # setting value to progress bar
            self.pbar.setValue(i)
  
# main method
if __name__ == '__main__':
      
      
    # create pyqt5 app
    App = QApplication(sys.argv)
  
    # create the instance of our Window
    window = Example()
  
    # 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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *