Reputation: 229341
Is there a way to have a window without a title bar using wxPython? If so, how would I go about doing that?
Upvotes: 4
Views: 4865
Reputation: 8159
wx.NO_BORDER - Displays no border, overriding the default border style for the window. Source
wx.NO_BORDER
wx.CAPTION - Removes all buttons from the title bar. Source 1 Source 2
wx.CAPTION
Upvotes: 5