RosettaCodeData/Task/Window-creation/Python/window-creation-3.py

12 lines
235 B
Python
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
from wxPython.wx import *
class MyApp(wxApp):
def OnInit(self):
frame = wxFrame(NULL, -1, "Hello from wxPython")
frame.Show(true)
self.SetTopWindow(frame)
return true
app = MyApp(0)
app.MainLoop()