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

11 lines
330 B
Python

def FunctionInAWorkerThread(strs):
evt = wx.CommandEvent()
# NOT evt.SetString(strs) as this would be a shallow copy
evt.SetString(strs[:]) # make a deep copy
wx.TheApp.QueueEvent(evt)