Skip to content

Instantly share code, notes, and snippets.

@driscollis
Created December 3, 2014 22:42
Show Gist options
  • Save driscollis/32329eb5ac42b92f6c8d to your computer and use it in GitHub Desktop.
Save driscollis/32329eb5ac42b92f6c8d to your computer and use it in GitHub Desktop.
import wx
########################################################################
class MyFrame(wx.Frame):
""""""
#----------------------------------------------------------------------
def __init__(self):
"""Constructor"""
wx.Frame.__init__(self, parent=None, title="Hello World!")
panel = wx.Panel(self)
self.Show()
if __name__ == '__main__':
app = wx.App(False)
frame = MyFrame()
app.MainLoop()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment