]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/tests/test_busyinfo.py
8 bi
= wx
.BusyInfo("This is a wx.BusyInfo widget...")
10 # This yield is needed on wxGTK in order to see the text. Is
11 # there a way around this?
12 if "wxGTK" in wx
.PlatformInfo
:
13 wx
.Yield(); wx
.Yield()
21 btn
= wx
.Button(pnl
, label
="Click me", pos
=(10,10))
22 btn
.Bind(wx
.EVT_BUTTON
, OnButton
)