Display a frame : Frame : WxPython PYTHON TUTORIALS


PYTHON TUTORIALS » WxPython » Frame »

 

Display a frame


Display a frame
import wx

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

app = App()
app.MainLoop()



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON TUTORIALS

 Navioo WxPython
» Frame