mirror of
https://github.com/kennethreitz-archive/pyinstaller.git
synced 2026-06-17 14:10:57 +00:00
03bcf72d90
git-svn-id: http://svn.pyinstaller.org/trunk@844 8dd32b29-ccff-0310-8a9a-9233e24343b1
19 lines
339 B
Python
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()
|