Files
Phoenix/docs/sphinx/rest_substitutions/snippets/python/converted/EvtHandler.QueueEvent.2.py
2012-04-10 03:16:37 +00:00

11 lines
386 B
Python

def FunctionInAWorkerThread(strs):
evt = wx.ThreadEvent()
evt.SetString(strs)
# wx.ThreadEvent.Clone() makes sure that the internal wx.String
# member is not shared by other string instances:
wx.TheApp.QueueEvent(evt.Clone())