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