]> git.saurik.com Git - wxWidgets.git/blame - wxPython/samples/wxPIA_book/Chapter-01/bare.py
added missing button state
[wxWidgets.git] / wxPython / samples / wxPIA_book / Chapter-01 / bare.py
CommitLineData
be05b434
RD
1import wx
2
3class App(wx.App):
4
5 def OnInit(self):
6 frame = wx.Frame(parent=None, title='Bare')
7 frame.Show()
8 return True
9
10app = App()
11app.MainLoop()