Advertising
advertising
related pastes to tag 'wx'
- 674497 - Someone: wx
-
- import wx
- class MainWindow(wx.Frame):
- """ We simply derive a new class of Frame. """
- def __init__(self, parent, id, title):
- wx.Frame.__init__(self, parent, id, title, size=(640,480))
- self.Bind(wx.EVT_KEY_DOWN, self.OnKeyDown)
- 612605 - Someone: wx
-
- import wx
- class MainWindow(wx.Frame):
- """ We simply derive a new class of Frame. """
- def __init__(self, parent, id, title):
- wx.Frame.__init__(self, parent, id, title, size=(640,480))
- self.Bind(wx.EVT_KEY_DOWN, self.OnKeyDown)