Created
December 3, 2014 22:42
-
-
Save driscollis/32329eb5ac42b92f6c8d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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