En este artículo veremos cómo hacer que el fondo de la barra de progreso sea transparente, es decir, solo la barra de la barra de progreso será visible y el fondo será completamente transparente. Para hacer esto, hemos cambiado el nivel alfa, es decir, el nivel de transparencia a cero, que es el mínimo, lo que hace que el fondo sea completamente invisible.
A continuación se muestra cómo se ve la barra de progreso normal frente a la barra de progreso de fondo transparente
Para cambiar el nivel alfa tenemos que cambiar la hoja de estilo CSS de la barra de progreso, abajo está la hoja de estilo.
QProgressBar { background-color : rgba(0, 0, 0, 0); border : 1px; }
Este código de hoja de estilo se usa con setStyleSheet
el método a continuación es 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 background color to window self.setStyleSheet("background-color : yellow") # 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 to invisible bar.setStyleSheet("QProgressBar" "{" "background-color : rgba(0, 0, 0, 0);" "border : 1px" "}") 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