Files
giovannibajo 03bcf72d90 Merge Python 2.6 for Windows support (py26win branch)
git-svn-id: http://svn.pyinstaller.org/trunk@844 8dd32b29-ccff-0310-8a9a-9233e24343b1
2010-05-21 00:07:21 +00:00

19 lines
339 B
Python

#!/usr/bin/env python
# -*- coding: utf-8 -*-
import wx
def main():
app = wx.App(0)
frame = wx.Frame(None, title="Hello World from wxPython")
panel = wx.Panel(frame)
label = wx.StaticText(panel, -1, "Hello World from wxPython")
frame.Fit()
frame.Show()
app.MainLoop()
if __name__ == "__main__":
main()