Qt中progressbar进度的颜色和背景色怎么设置

2024-11-27 11:11:50
推荐回答(2个)
回答1:

QProgressBar {
   border: 2px solid grey;
   border-radius: 5px;
   background-color: #FFFFFF;
}

QProgressBar::chunk {
   background-color: #05B8CC;
   width: 20px;
}

QProgressBar {
   border: 2px solid grey;
   border-radius: 5px;
   text-align: center;
}

回答2:

背景色用background-color
再加上border-color
就行了