Pergunta

Acabei de sair com minha maneira de noob acabar com um tópico, mas não sei por que não está funcionando. Alguém por favor me ajudaria?

Aqui está o meu código de amostra:

import wx
import thread
import time
import threading

class TestFrame(wx.Frame):
    def __init__(self):
        wx.Frame.__init__(self, parent = None, id = -1, title = "Testing", pos=(350, 110), size=(490, 200), style=wx.SYSTEM_MENU | wx.CAPTION | wx.CLOSE_BOX | wx.MINIMIZE_BOX)
        self.panel = wx.Panel(self)

        self.stop = False

        self.StartButton = wx.Button(parent = self.panel, id = -1, label = "Start", pos = (110, 17), size = (50, 20))
        self.MultiLine = wx.TextCtrl(parent = self.panel, id = -1, pos = (38, 70), size = (410, 90), style = wx.TE_MULTILINE|wx.TE_READONLY|wx.TE_AUTO_URL)


        self.Bind(wx.EVT_BUTTON, self.OnStart, self.StartButton)
        self.Bind(wx.EVT_CLOSE, self.OnClose)

    def OnStart(self, event):
        self.StartButton.Disable()
        self.NewThread = threading.Thread(target = self.LongRunning)
        self.NewThread.start()

    def OnClose(self, event):
        self.stop = True
        BusyBox = wx.BusyInfo("Just a moment please!", self)
        wx.Yield()

        while True:
            try:
                if not self.NewThread.isAlive():
                    self.Destroy()
                    break
                time.sleep(0.5)
            except:
                self.Destroy()
                break

    def LongRunning(self):
        Counter = 1

        while True:
            time.sleep(2)
            print "Hello, ", Counter
            self.MultiLine.AppendText("hello, " + str(Counter) + "\n") #If you comment out this line, everything works fine. Why can't I update the fame after I hit the close button?
            Counter = Counter + 1
            if self.stop:
                break

class TestApp(wx.App):
    def OnInit(self):
        self.TestFrame = TestFrame()
        self.TestFrame.Show()
        self.SetTopWindow(self.TestFrame)
        return True

def main():
    App = TestApp(redirect = False)
    App.MainLoop()

if __name__ == "__main__":
    main()

Como você pode ver no meu código, há um loop infinito no thread, o que digo que o thread a fazer é sair do loop quando clico no botão Fechar. Mas o problema é que toda vez que eu aperto o botão Fechar, parece o código preso em self.MultiLine.AppendText("hello, " + str(Counter) + "\n") linha, não sei por quê. Alguém pode ajudar?

Foi útil?

Solução

Tente usar um método seguro de thread, como wx.CallAfter Ao atualizar sua multilina.

 def LongRunning(self):
     Counter = 1

     while True:
         time.sleep(2)
         print "Hello, ", Counter

         wx.CallAfter(self.updateMultiLine, "hello, " + str(Counter) + "\n")
         Counter = Counter + 1
         if self.stop:
             break

 def updateMultiLine(self, data):
     self.MultiLine.AppendText(data)

Outras dicas

Em geral, com kits de ferramentas da GUI, apenas um thread deve acessar as funções da GUI. Uma exceção é wx.callafter

Como você deve (deve), os defeitos de software podem ser classificados em três grupos:

  1. Seus insetos.
  2. Seus insetos.
  3. Tópicos.

;)

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top