码迷,mamicode.com
首页 > 编程语言 > 详细

wxpython 学习之 --threading

时间:2019-10-22 10:58:31      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:window   eve   程序   start   多线程   self   ini   tle   set   

为了避免程序运行时,什么都干不了,甚至连移动窗口或者关闭的简单动作都会卡死,因此需要采用多线程。

class Mythread(threading.Thread):
  def __init__(self,window):
    super(Mythread,self).__init__()
    self.window = window
    #self.flag = threading.Event()
    #self.flag.clear() #set flag False

  def run(self):
    self.window.run()

  def stop(self):
    #os._exit(0)
    self.Close()

然后在Frame里面
def ButtonStart(self,event):
  self.job = Mythread(self)
  self.job.start() #会调用到Mythread里的run方法


如果想打开程序就执行,可以将job写在main函数里
if __name__ == ‘__main__‘:
  app = MyApp()
  frame = MyFrame(title=‘Log‘,size=(750,500))
  frame.Show()
  job=Mythread(frame)
  job.start()
  app.MainLoop()

wxpython 学习之 --threading

标签:window   eve   程序   start   多线程   self   ini   tle   set   

原文地址:https://www.cnblogs.com/xia-dong/p/11718036.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!