(self, *args, radius=5, color=QColor(24, 189, 155),
backgroundColor=QColor(Qt.transparent), **kwargs)
| 55 | BackgroundColor = QColor(Qt.transparent) # 背景颜色 |
| 56 | |
| 57 | def __init__(self, *args, radius=5, color=QColor(24, 189, 155), |
| 58 | backgroundColor=QColor(Qt.transparent), **kwargs): |
| 59 | super(MetroCircleProgress, self).__init__(*args, **kwargs) |
| 60 | self.Radius = radius |
| 61 | self.Color = color |
| 62 | self.BackgroundColor = backgroundColor |
| 63 | self._items = [] |
| 64 | self._initAnimations() |
| 65 | |
| 66 | @pyqtProperty(int) |
| 67 | def radius(self) -> int: |
nothing calls this directly
no test coverage detected