]> git.saurik.com Git - wxWidgets.git/blob - wxPython/samples/wxPIA_book/Chapter-08/simple_frame.py
Added the sample code from wxPython In Action to the samples dir
[wxWidgets.git] / wxPython / samples / wxPIA_book / Chapter-08 / simple_frame.py
1 import wx
2
3 if __name__ == '__main__':
4 app = wx.PySimpleApp()
5 frame = wx.Frame(None, -1, "A Frame", style=wx.DEFAULT_FRAME_STYLE,
6 size=(200, 100))
7 frame.Show()
8 app.MainLoop()