En este artículo veremos cómo ocultar la barra de progreso en la aplicación PyQt5. Hay dos formas en las que podemos ocultar el progreso:
- Usando el
hide
método. - Establecer el estado de visibilidad de la barra de progreso en Falso.
Método 1 :
Con la ayuda del hide
método, podemos ocultar 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 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 bar.setValue(100) bar.setFormat("Welcome geeks to geeks portal") # setting alignment to center bar.setAlignment(Qt.AlignCenter) # hiding the progress bar bar.hide() App = QApplication(sys.argv) # create the instance of our Window window = Window() # start the app sys.exit(App.exec())
Salida:
Método #2:
Con la ayuda del SetVisible
método, podemos ocultar 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 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 bar.setValue(100) bar.setFormat("Welcome geeks to geeks portal") # setting alignment to center bar.setAlignment(Qt.AlignCenter) # setting visibility status to False bar.setVisible(False) 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