Change the color of a QProgressBar

后端 未结 3 1626
情书的邮戳
情书的邮戳 2021-02-07 10:38

I am running ubuntu 11.04. This is what my progress bars look like:

\"progress

I am showing the progr

3条回答
  •  滥情空心
    2021-02-07 11:17

    It tried this :

    QProgressBar {
         border: 2px solid grey;
         border-radius: 5px;
         background-color: #FF0000;
     }
    
     QProgressBar::chunk {
         background-color: #05B8CC;
         width: 20px;
     }
    

    as styleSheet for the progressBar and I got this enter image description here

    so it is easy to change the background of the bar to the color you want and you can display a text by yourself with setFormat(). Is it working for you?

提交回复
热议问题