wxWidgets/wxPython/samples/wxPIA_book/Chapter-01/bare.py

12 lines
174 B
Python
Raw Normal View History

import wx
class App(wx.App):
def OnInit(self):
frame = wx.Frame(parent=None, title='Bare')
frame.Show()
return True
app = App()
app.MainLoop()