(self, *args, **kwargs)
| 21 | class CustomPaintWidget(QWidget): |
| 22 | |
| 23 | def __init__(self, *args, **kwargs): |
| 24 | super(CustomPaintWidget, self).__init__(*args, **kwargs) |
| 25 | layout = QVBoxLayout(self) |
| 26 | layout.addWidget(QLabel("我是自定义CustomPaintWidget", self)) |
| 27 | |
| 28 | def paintEvent(self, event): |
| 29 | # 解决QSS问题 |