En este artículo veremos cómo configurar una imagen de fondo para la barra de progreso. De forma predeterminada, no hay una imagen de fondo establecida en la barra de progreso, a continuación se muestra cómo se ve la barra de progreso normal frente a la barra de progreso con imagen de fondo.
Para hacerlo, debemos usar la hoja de estilo CSS, a continuación se muestra el código para la hoja de estilo.
QProgressBar { background-image : url(image.png); border : 1px solid white; }
Esta hoja de estilo se usa con setStyleSheet
el método, a continuación se muestra la implementación del código.
# 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(30) # setting alignment to center bar.setAlignment(Qt.AlignCenter) # setting background bar.setStyleSheet( "QProgressBar" "{" "background-image: url(image.png);" " border: 1px solid white;" "} " ) 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