mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-04 11:00:07 +01:00
10 lines
186 B
Python
10 lines
186 B
Python
|
|
def FunctionInAWorkerThread(strs):
|
|
|
|
evt = wx.CommandEvent()
|
|
|
|
evt.SetString(strs)
|
|
|
|
wx.TheApp.QueueEvent(evt)
|
|
|