En este artículo veremos cómo hacer que la barra sea translúcida, es decir, entre opaca y transparente. La barra de progreso tiene dos componentes, uno es el fondo que es visible cuando la barra no está al 100%, el otro es la barra que indica el progreso, cuando hacemos que la barra sea translúcida, el fondo será visible.
Para hacer esto, tenemos que cambiar el nivel alfa, es decir, el nivel de transparencia de la barra, debajo está la barra de progreso normal frente a la barra de progreso translúcida, el color de fondo se establece en rojo y el color de la barra se establece en verde.
Para cambiar el nivel alfa, tenemos que cambiar la hoja de estilo CSS, a continuación se muestra el código de la hoja de estilo para la barra.
QProgressBar::chunk { background : rgba(0, 255, 0, 100); }
Esta hoja se utiliza cuyo 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 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(80) # setting alignment to center bar.setAlignment(Qt.AlignCenter) # setting background to color # and bar color with alpha factor bar.setStyleSheet("QProgressBar" "{" "background-color : rgba(255, 0, 0, 255);" "border : 1px" "}" "QProgressBar::chunk" "{" "background : rgba(0, 255, 0, 100);" "}" ) 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