0

非常によく似た質問がありますが、私はそれらを理解していないか、完全に答えていません。私が見たのは、これこれです。wxpython GUI を実行しています。ボタンを押すだけで、4 つの異なるスレッド (非常に長時間実行されるタスク) を実行します。これを問題なく実装できました。スレッドは実行され、GUI は引き続き使用できます。

各スレッド ( TestThread0TestThread1など) は変数をファイルに書き込みます (ただし、ループを終了することはありません -- 無限ループ)。ときどき(たとえば 20 秒ごとに)、WriteThisこのファイルとその値/変数を読み取る関数 ( ) をメインの GUI アプリケーション (wx.FRAME) で実行したいと考えています。私の質問は、スレッドがまだ実行されている間に GUI 部分でこの関数を実行する方法です。を実行しようとすると、エラーが発生しますTMainForm.WriteThis()

以下は私の(非常に短縮された)コードです:

class TMainForm(wx.Frame):

    def __init__(self, *args, **kwds):


            kwds["style"] = wx.DEFAULT_FRAME_STYLE ^ wx.RESIZE_BORDER
            wx.Frame.__init__(self, *args, **kwds)

            self.Splitter = wx.SplitterWindow(self, -1)#, style=wx.SP_NOSASH)

            self.Panel1 = wx.Panel(self.Splitter, -1)          
            self.Panel3 = wx.Panel(self.Splitter, -1)

            self.Splitter.SplitVertically(self.Panel1,self.Panel3,400)

            ... and so on to set up GUI

    # Press button in GUI to run threads
    def OnAnalyzePress(self,event): 
        TestThread0()
        time.sleep(2)
        TestThread1()
        time.sleep(2)
        TestThread2()
        time.sleep(2)
        TestThread_output

    # This is the function I want to run from TestThread_output class below
    def WriteThis(self):
        print 'Running'
        # I will read file and update GUI here (Threads keep running though)

# Example thread (all the others are the same)
class TestThread0(Thread):

    def __init__(self):
        Thread.__init__(self)
        self.start()    # start the thread

    def run(self):
        # This is my "infinite loop" function that writes variable/values to a file
        MyLongRunningFunction.SomeFunction()

# This is the thread I want to run that executes some function in wx.FRAME every 20 seconds
class TestThread_output(Thread):

    def __init__(self):
        Thread.__init__(self)
        self.start()    # start the thread

    def run(self):

        for i in range(1000):
            TMainForm.WriteThis() # !!! This is where my error is !!! I want to run function called "WriteThis"
            time.sleep(20)

class TApplication(wx.App):
    def OnInit(self):

            wx.InitAllImageHandlers()
            MainForm = TMainForm(None, -1,"")
            self.SetTopWindow(MainForm)

            MainForm.Show()
            return 1

if __name__ == "__main__":
    Application = TApplication(0)
    Application.MainLoop()

助けてくれてありがとう!!

4

1 に答える 1

2
class TestThread_output(Thread):
    def __init__(self,mainForm):
        Thread.__init__(self)
        self.mainForm = mainForm #save reference to the mainFrame GUI
        self.start()    # start the thread
    def run(self):
        for i in range(1000):
            wx.CallAfter(self.mainForm.WriteThis) #since its a diff thread you need callafter(or calllater)
            #I dont think you can do self.mainForm.WriteThis()
            time.sleep(20)

class TMainForm(wx.Frame):
    ...
    def OnAnalyzePress(self,event): 
        TestThread0()
        time.sleep(2)
        TestThread1()
        time.sleep(2)
        TestThread2()
        time.sleep(2)
        TestThread_output(self) #<- pass in this as mainFrame argument to thread constructor
于 2013-10-17T17:36:05.583 に答える