Advertisement
Guest User

editor1.py

a guest
Jan 31st, 2012
1,157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.28 KB | None | 0 0
  1. import wx
  2.  
  3. class Window(wx.Frame):
  4.  
  5.     def __init__(self, parent, title):
  6.         wx.Frame.__init__(self, parent, title = title, size = (300,250))
  7.         self.control = wx.TextCtrl(self, style = wx.TE_MULTILINE)
  8.         self.Show(True)
  9.  
  10. app = wx.App()
  11. wnd = Window(None, "pyNote")
  12. app.MainLoop()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement