Advertisement
Guest User

Untitled

a guest
Apr 26th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. import wx
  2.  
  3.  
  4. class Scherm(wx.Frame):
  5. def __init__(self, parent, id, title):
  6. wx.Frame.__init__(self, parent, id, title, size=(600, 400), style = wx.DEFAULT_FRAME_STYLE & ~(wx.MINIMIZE_BOX))
  7. self.SetPosition((200,200))
  8. self.Show(True)
  9.  
  10.  
  11. if __name__=="__main__":
  12. app = wx.App()
  13. Scherm(None, -1, "Opdracht2")
  14. app.MainLoop()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement