当前位置:   article > 正文

pyside6两个按钮,一个控制子线程的开始,暂停,。一个控制子线程结束_按钮控制线程暂停

按钮控制线程暂停

以下是一个使用 PySide6 创建两个按钮的示例,一个按钮用于控制子线程的开始和暂停,另一个按钮用于控制子线程的结束:

  1. import time
  2. from PySide6.QtCore import Qt, QThread, Signal, Slot
  3. from PySide6.QtWidgets import QApplication, QVBoxLayout, QWidget, QPushButton
  4. # 自定义子线程类
  5. class WorkerThread(QThread):
  6. status_changed = Signal(str) # 自定义信号,用于更新状态
  7. def __init__(self, parent=None):
  8. super().__init__(parent)
  9. self.paused = False
  10. self.stopped = False
  11. def run(self):
  12. count = 0
  13. while True:
  14. if not self.paused:
  15. count += 1
  16. self.status_changed.emit(f"Count: {count}")
  17. time.sleep(1)
  18. if self.stopped:
  19. break
  20. def pause(self):
  21. self.paused = True
  22. def resume(self):
  23. self.paused = False
  24. def stop(self):
  25. self.stopped = True
  26. # 主窗口类
  27. class MainWindow(QWidget):
  28. def __init__(self):
  29. super().__init__()
  30. self.thread = None
  31. self.start_pause_button = QPushButton("Start")
  32. self.stop_button = QPushButton("Stop")
  33. layout = QVBoxLayout()
  34. layout.addWidget(self.start_pause_button)
  35. layout.addWidget(self.stop_button)
  36. self.setLayout(layout)
  37. self.setWindowTitle("Thread Example")
  38. self.start_pause_button.clicked.connect(self.start_pause_thread)
  39. self.stop_button.clicked.connect(self.stop_thread)
  40. self.update_button_state()
  41. def start_pause_thread(self):
  42. if not self.thread or not self.thread.isRunning():
  43. self.thread = WorkerThread()
  44. self.thread.status_changed.connect(self.update_status)
  45. self.thread.started.connect(self.update_button_state)
  46. self.thread.finished.connect(self.update_button_state)
  47. self.thread.start()
  48. self.update_status("Thread started.")
  49. elif self.thread.paused:
  50. self.thread.resume()
  51. self.update_status("Thread resumed.")
  52. else:
  53. self.thread.pause()
  54. self.update_status("Thread paused.")
  55. def stop_thread(self):
  56. if self.thread and self.thread.isRunning():
  57. self.thread.stop()
  58. self.thread.wait()
  59. self.update_button_state()
  60. self.update_status("Thread stopped.")
  61. @Slot(str)
  62. def update_status(self, text):
  63. print(text) # 输出到控制台
  64. # 在此处更新你的界面的状态标签、日志等
  65. def update_button_state(self):
  66. is_running = self.thread and self.thread.isRunning()
  67. self.start_pause_button.setEnabled(True)
  68. self.stop_button.setEnabled(is_running)
  69. if __name__ == "__main__":
  70. app = QApplication([])
  71. window = MainWindow()
  72. window.show()
  73. app.exec()

在这个示例中,我们创建了两个按钮:一个按钮用于控制子线程的开始和暂停,另一个按钮用于控制子线程的结束。当点击 "Start" 按钮时,将会启动子线程并开始计数。如果线程已经在运行,则点击按钮将使线程进入暂停状态,并再次点击按钮将恢复线程。

点击 "Stop" 按钮将结束子线程并停止计数。在状态更新时(通过 update_status 函数),你可以根据需要进行适当的处理和在界面上的展示。

运行代码后,将显示一个具有控制子线程开始、暂停和结束功能的窗口。请根据你的需求,更新示例中的按钮文本、界面元素和状态更新函数来满足你的实际需求。请注意,在这个示例中,输出状态信息到控制台,你可以根据需要调整状态信息的展示方式。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/652064
推荐阅读
相关标签
  

闽ICP备14008679号