(self, *args, **kwargs)
| 113 | class Window(QWidget): |
| 114 | |
| 115 | def __init__(self, *args, **kwargs): |
| 116 | super(Window, self).__init__(*args, **kwargs) |
| 117 | layout = QVBoxLayout(self) |
| 118 | layout.addWidget(PushButtonLine("点击加载")) |
| 119 | layout.addWidget(PushButtonLine("点击加载").setLineColor("#ef5350")) |
| 120 | layout.addWidget(PushButtonLine("点击加载").setLineColor("#ffc107")) |
| 121 | |
| 122 | |
| 123 | if __name__ == "__main__": |
no test coverage detected