I am designing a GUI using wxPython with flat buttons.
How can I make a thin border around the button, like button2 in the picture:
https://i.stack.imgur.com/sYo0D.png
The button that I have now looks like this:
https://i.stack.imgur.com/hz3r8.png
The code:
import wx.lib.buttons as buttons
[...]
self.a = buttons.GenButton(self, 00, "0", (140, 380), size=(100, 100),style=wx.BORDER_NONE)
self.a.SetBackgroundColour((215, 215, 215))
Thanks for help.