前提・実現したいこと
タイトルのままになってしまいますが、
ボタン1で実行しているsubprocessを、ボタン2で処理の中断をしたいです。
import sys from PyQt5.QtCore import * from PyQt5.QtWidgets import * import threading import subprocess class MainWindow(QWidget): def __init__(self, parent=None): super(MainWindow, self).__init__(parent) self.setGeometry(300, 50, 300, 200) self.setWindowTitle('MainWindow') self.pushButton1 = QPushButton(self) self.pushButton1.setObjectName(u"pushButton") self.pushButton1.setGeometry(QRect(30, 60, 75, 40)) self.pushButton2 = QPushButton(self) self.pushButton2.setObjectName(u"pushButton2") self.pushButton2.setGeometry(QRect(120, 60, 75, 40)) self.pushButton1.setText(QCoreApplication.translate("MainWindow", u"開始", None)) self.pushButton2.setText(QCoreApplication.translate("MainWindow", u"停止", None)) self.flag = True thread1 = threading.Thread(target=self.ButtonPush1) thread2 = threading.Thread(target=self.ButtonPush2) self.pushButton1.clicked.connect(lambda: thread1.start()) self.pushButton2.clicked.connect(lambda: thread2.start()) def ButtonPush1(self): subprocess.Popen("timeout 10") def ButtonPush2(self): # ここにButtonPush1()で実行している処理を中断させる処理を入れたい if __name__ == '__main__': app = QApplication(sys.argv) main_window = MainWindow() main_window.show() sys.exit(app.exec_())
宜しくお願いいたします
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/10/29 07:07