I was wondering whether it's possible to change the color of a PyQt Progressbar?
I have the following code:
from PyQt4 import QtGui, QtCore
Pbar1 = QtGui.QProgressBar()
Pbar1.setParent(Frame1)
Pbar1.setGeometry(0, 0, 306, 30)
Pbar1.setValue(Frame1Value)
if Pbar1.value == 100
......Pbar1.setColor(Red)
Frame1Value is dependable on some early calculations, and to be assumed never calculates to exactly the same value.
I would like the progressbar to turn 'red' when the value is 100 (which the value is set limited at since a progressbar won't show values above 100%), so giving me a better visual image of the fact that the value is 'out of constraint'.
I am aware that .setColor isn't a known command for a Progressbar, but it's just to show my idea.
Does anyone know how to do this, or if it is even possible??
Thx in advance!
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…