Search code examples
pythonuser-interfacewxpythontitlebarwxwidgets

Window with no title bar in wxWindows/wxPython


Is there a way to have a window without a title bar using wxPython? If so, how would I go about doing that?


Solution

  • wx.NO_BORDER - Displays no border, overriding the default border style for the window. Source

    wx.CAPTION - Removes all buttons from the title bar. Source 1 Source 2