PyQt5: borde multicolor en la barra de la barra de progreso

En este artículo vemos cómo crear el borde multicolor a la barra de la barra de progreso. La barra es la parte de la barra de progreso que indica la finalización.

A continuación se muestra la representación de la barra de borde de la barra de progreso frente a la barra multicolor de la barra de progreso.


In order to this we have change the color of each border of bar of progress bar in CSS style sheet, below is the code for border style sheet.

QProgressBar
{
border : 1px solid black;
}
QProgressBar::chunk
{
border :3px solid ;
border-top-color : red; 
border-left-color :pink;
border-right-color :green;
border-bottom-color : blue;
}

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
        value = 70
        bar.setValue(value)
  
        # setting alignment to center
        bar.setAlignment(Qt.AlignCenter)
  
        # setting border to progress bar
        # and setting multi colored border to the bar and color
        bar.setStyleSheet("QProgressBar "
                          "{"
                          "border : 1px solid black;"
                          "}"
                          "QProgressBar::chunk"
                          "{"
                          "background-color : yellow;"
                          "border :3px solid;"
                          "border-top-color : red;" 
                          "border-left-color :pink;"
                          "border-right-color :green;"
                          "border-bottom-color : blue;"
                          "}"
                          )
  
  
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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *