Does anyone know how to remove a window's border and title bar in wxPython? I want the client area to fill the entire screen.
I have a wxPanel defined as follows:
class FlashPanel(wxPanel):
*def __init__(self, parent, flashFile):
**wxPanel.__init__(self, parent, -1)
**sizer = wxBoxSizer(wxVERTICAL)
**ActiveXWrapper = MakeActiveXClass(flashControl.ShockwaveFlash)
**self.Flash = ActiveXWrapper( self, -1)
**self.Flash.Movie = os.path.join(os.getcwd(), flashFile)
**self.Flash.Menu=False
**sizer.Add(self.Flash, 1, wxEXPAND)
**self.SetSizer(sizer)
**self.SetAutoLayout(True)
**EVT_WINDOW_DESTROY(self, self.OnDestroy)