Haoyu
Results
1
issues of
Haoyu
问题反馈
1
wechat_gui中 # 定时发送子线程类 class ClockThread(QThread): def __init__(self): super().__init__() # 是否正在定时 self.time_counting = False # 发送信息的函数 self.send_func = None # 定时列表 self.clocks = None def __del__(self): self.wait() def run(self): while self.time_counting:...