Part of Slepp's ProjectsPastebinTURLImagebinFilebin
Feedback -- English French German Japanese
Create Upload Newest Tools Donate
Sign In | Create Account

Advertising

advertising

related pastes to tag 'wx'

674497 - Someone: wx
  1. import wx
  2.  
  3. class MainWindow(wx.Frame):
  4.     """ We simply derive a new class of Frame. """
  5.     def __init__(self, parent, id, title):
  6.         wx.Frame.__init__(self, parent, id, title, size=(640,480))
  7.  
  8.         self.Bind(wx.EVT_KEY_DOWN, self.OnKeyDown)
  9.  
612605 - Someone: wx
  1. import wx
  2.  
  3. class MainWindow(wx.Frame):
  4.     """ We simply derive a new class of Frame. """
  5.     def __init__(self, parent, id, title):
  6.         wx.Frame.__init__(self, parent, id, title, size=(640,480))
  7.  
  8.         self.Bind(wx.EVT_KEY_DOWN, self.OnKeyDown)
  9.  
worth-right
fantasy-obligation