副标题标签组件
| 58 | |
| 59 | |
| 60 | class SubtitleLabel(QLabel): |
| 61 | """副标题标签组件""" |
| 62 | |
| 63 | def __init__(self, text: str, parent=None): |
| 64 | super().__init__(text, parent) |
| 65 | self.setFont(get_default_font(16, bold=True)) |
| 66 | self.setProperty("class", "subtitle") |
| 67 | |
| 68 | |
| 69 | class SecondaryLabel(QLabel): |
no outgoing calls
no test coverage detected