/ Published in: Python
URL: http://wiki.wxpython.org/AnotherTutorial
Expand |
Embed | Plain Text
#!/usr/bin/python # simple.py import wx app = wx.App() frame = wx.Frame(None, -1, 'simple.py') frame.Show() app.MainLoop()
You need to login to post a comment.
