在Qt中禁用进度条动画

时间:2013-05-15 03:45:12

标签: windows qt progress-bar pyqt4

是否可以在Qt中禁用进度条的动画并使其表现得像米一样?

以下是默认行为,我希望不要让闪亮的波浪定期通过它。我希望用它来显示CPU,内存和磁盘空间等已用资源。

enter image description here

2 个答案:

答案 0 :(得分:11)

用于qt designer的css:

 QProgressBar::chunk {
     background-color: #3add36;
     width: 1px;
 }

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

pyqt示例:

my_progress_bar = QProgressBar()
my_progress_bar.setStyleSheet(" QProgressBar { border: 2px solid grey; border-radius: 0px; text-align: center; } QProgressBar::chunk {background-color: #3add36; width: 1px;}")

enter image description here

答案 1 :(得分:1)

您使用的进度条看起来像是Windows Vista look。您应该可以通过更改stylesheet来修改行为。尝试替换进度条和/或块的背景,图像。