我正在另一个线程中运行一个函数,该线程应该填充一个对话框,然后显示它,但只要我试图以任何方式改变对话框就会出现故障。我已经读过这是WxPython的一个常见问题,devs并不是要直接改变另一个线程中的对话框。
我如何解决这个问题?我可以在我的主线程中调用该函数,但这将阻止我的GUI,初始化对话框是一个漫长的操作 - 我想避免这种情况。
我的代码类似于以下内容。
# Create the dialog and initialize it
thread.start_new_thread(self.init_dialog, (arg, arg, arg...))
def init_dialog(self, arg, arg, arg....):
dialog = MyFrame(self, "Dialog")
# Setup the dialog
# ....
dialog.Show()
即使有一个空白对话框,只需要在函数内部显示一个简单的调用,我就会出现分段错误。非常感谢任何帮助,谢谢。
答案 0 :(得分:2)
我制作了一个小程序,用于演示在计算过程中保持GUI响应并在计算后调用消息框。
import wx
import threading
import time
class TestFrame(wx.Frame):
def __init__(self):
wx.Frame.__init__(self, None, -1, "I am a test frame")
self.clickbtn = wx.Button(self, label="click me!")
self.Bind(wx.EVT_BUTTON, self.onClick)
def onClick(self, event):
self.clickbtn.Destroy()
self.status = wx.TextCtrl(self)
self.status.SetLabel("0")
print "GUI will be responsive during simulated calculations..."
thread = threading.Thread(target=self.runCalculation)
thread.start()
def runCalculation(self):
print "you can type in the GUI box during calculations"
for s in "1", "2", "3", "...":
time.sleep(1)
wx.CallAfter(self.status.AppendText, s)
wx.CallAfter(self.allDone)
def allDone(self):
self.status.SetLabel("all done")
dlg = wx.MessageDialog(self,
"This message shown only after calculation!",
"",
wx.OK)
result = dlg.ShowModal()
dlg.Destroy()
if result == wx.ID_OK:
self.Destroy()
mySandbox = wx.App()
myFrame = TestFrame()
myFrame.Show()
mySandbox.MainLoop()
GUI内容保存在主线程中,而计算继续不受阻碍。根据需要,可以在创建对话框时获得计算结果。