(self, minValue: int, maxValue: int)
| 53 | self.BackgroundColor = backgroundColor |
| 54 | |
| 55 | def setRange(self, minValue: int, maxValue: int): |
| 56 | if minValue >= maxValue: # 最小值>=最大值 |
| 57 | return |
| 58 | self.MinValue = minValue |
| 59 | self.MaxValue = maxValue |
| 60 | self.update() |
| 61 | |
| 62 | def paintEvent(self, event): |
| 63 | super(PercentProgressBar, self).paintEvent(event) |