Guest User

Untitled

a guest
May 23rd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. '''
  2. Created on Jul 8, 2010
  3.  
  4. @author: blaze
  5. '''
  6. import wx
  7.  
  8. class File(wx.Menu):
  9.  
  10. def __init__(self):
  11. wx.Menu.__init__(self)
  12. self.Priority = 0
  13. self.Label = "File"
  14.  
  15. exit = wx.MenuItem(self,wx.ID_EXIT,"E&xit", "Terminate the program")
  16. self.Bind(wx.EVT_MENU, self.OnExit )
  17. self.AppendItem(exit)
  18.  
  19.  
  20.  
  21. def OnExit(self, event):
  22. print "test"
  23. wx.GetApp().Frame.Close()
Add Comment
Please, Sign In to add comment