En este artículo veremos cómo agregar una imagen a la barra de la barra de progreso. Podemos configurar la imagen de fondo, pero para configurar la imagen en una barra, tenemos que modificar el fragmento CSS de la barra de progreso, a continuación se muestra cómo se ve la imagen de fondo normal y la imagen de fondo de una barra.
Para hacer esto, a continuación se muestra la hoja de estilo CSS para el archivo de fragmentos
QProgressBar::chunk { background-image : url(image.png); }
Esta hoja de estilo se usa por setStyleSheet
método, 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(70) # setting alignment to center bar.setAlignment(Qt.AlignCenter) # adding background image to bar bar.setStyleSheet( "QProgressBar::chunk " "{" "background-image: url(image.png);" "}" ) 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