从tkinter gui停止python线程

时间:2014-01-30 17:18:12

标签: python multithreading tkinter

我正在尝试使用启动按钮创建一个简单的Python GUI(使用Tkinter),在线程中运行while循环,以及停止while循环的停止按钮。

我遇到了停止按钮的问题,一旦单击开始按钮,停止按钮就不会停止任何操作并冻结GUI。

见下面的代码:

import threading
import Tkinter

class MyJob(threading.Thread):

    def __init__(self):
        super(MyJob, self).__init__()
        self._stop = threading.Event()

    def stop(self):
        self._stop.set()    

    def run(self):
        while not self._stop.isSet():
            print "-"

if __name__ == "__main__":

    top = Tkinter.Tk()

    myJob = MyJob()

    def startCallBack():        
        myJob.run()

    start_button = Tkinter.Button(top,text="start", command=startCallBack)
    start_button.pack()

    def stopCallBack():
        myJob.stop()

    stop_button = Tkinter.Button(top,text="stop", command=stopCallBack)
    stop_button.pack()

    top.mainloop()

知道如何解决这个问题吗?我确信这是微不足道的,必须完成数千次,但我自己找不到解决方案。

由于 大卫

1 个答案:

答案 0 :(得分:2)

代码直接调用run方法。它将在主线程中调用该方法。要在分离的线程中运行它,您应该使用threading.Thread.start method

def startCallBack():        
    myJob.start()