```python class Main(QWidget, Ui_Form): def __init__(self): super(Main, self).__init__() self.setupUi(self) QTimer.singleShot(0, self.thread_check) # Read More
posted @ 2023-08-13 14:52 PythonNew_Mr.Wang Views(629) Comments(0) Diggs(0)
```python # 线程函数 class WorkerThread(QThread): resultReady = pyqtSignal(object) def __init__(self, func, *args, **kwargs): super().__init__() self.func Read More
posted @ 2023-08-13 14:17 PythonNew_Mr.Wang Views(169) Comments(0) Diggs(0)