Cuando creamos una barra de progreso en PyQt5, su orientación es horizontal por defecto, pero podemos cambiarla con la ayuda del setOrientation
método. Para obtener la información sobre la orientación de la barra de progreso, es decir, se orientation
utiliza el método horizontal o vertical.
Sintaxis: barra.orientación()
Argumento: No requiere argumento.
Devolver: Devolverá Orientación del objeto aunque cuando lo imprimamos imprimirá 1 para orientación horizontal y 2 para orientación vertical.
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(250, 90, 30, 200) # set value to progress bar bar.setValue(40) # setting alignment to center bar.setAlignment(Qt.AlignCenter) # setting orientation to vertical bar.setOrientation(QtCore.Qt.Vertical) # getting orientation orientation = bar.orientation() # printing its type print(type(orientation)) # printing the orientation print(orientation) # create pyqt5 app App = QApplication(sys.argv) # create the instance of our Window window = Window() # start the app sys.exit(App.exec())
Producción :
class 'PyQt5.QtCore.Qt.Orientation' 2
Publicación traducida automáticamente
Artículo escrito por rakshitarora y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA