I've got several questions about wxPython, and I'm trying my best to solve them all myself. So, for now, I'll just start with a basic question I've been trying to figure out myself.
How do I make a flat button? The darker ones that you can not click? I have tried...
but_cancel = wx.Button(panel, ID_CANCEL, "Cancel", style=wxNO_BORDER )
wxNO_BORDER, is supposed to flatten it in Windows and GTK+. However, it still displays as a normal button.
Help?