Claudiu
Claudiu

Reputation: 229341

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?

Upvotes: 4

Views: 4865

Answers (1)

4d4c
4d4c

Reputation: 8159

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

Upvotes: 5

Related Questions