Posted By


Thammas on 03/18/11

Tagged


Statistics


Viewed 425 times
Favorited by 0 user(s)

Basic WxWindow - AnotherTutorial - wxPyWiki


/ Published in: Python
Save to your folder(s)



Copy this code and paste it in your HTML
  1. #!/usr/bin/python
  2.  
  3. # simple.py
  4.  
  5. import wx
  6.  
  7. app = wx.App()
  8.  
  9. frame = wx.Frame(None, -1, 'simple.py')
  10. frame.Show()
  11.  
  12. app.MainLoop()

URL: http://wiki.wxpython.org/AnotherTutorial

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.