]> git.saurik.com Git - wxWidgets.git/blame - wxPython/samples/wxPIA_book/Chapter-08/frame_subclass.py
added missing button state
[wxWidgets.git] / wxPython / samples / wxPIA_book / Chapter-08 / frame_subclass.py
CommitLineData
be05b434
RD
1import wx
2
3class SubclassFrame(wx.Frame):
4 def __init__(self):
5 wx.Frame.__init__(self, None, -1, 'Frame Subclass',
6 size=(300, 100))
7 panel = wx.Panel(self, -1)
8 button = wx.Button(panel, -1, "Close Me", pos=(15, 15))
9 self.Bind(wx.EVT_BUTTON, self.OnCloseMe, button)
10 self.Bind(wx.EVT_CLOSE, self.OnCloseWindow)
11
12 def OnCloseMe(self, event):
13 self.Close(True)
14
15 def OnCloseWindow(self, event):
16 self.Destroy()
17
18if __name__ == '__main__':
19 app = wx.PySimpleApp()
20 SubclassFrame().Show()
21 app.MainLoop()