Files
Phoenix/docs/sphinx/rest_substitutions/snippets/python/converted/wx.EvtHandler.QueueEvent.2.py
2016-05-18 16:38:18 -07: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())