views:

28

answers:

1

I'd need to make a new style for buttons and text entry controls. It should look something like Image

Is there a way to do this?

+1  A: 

For a start, try to look up the wx.Frame style property wx.FRAME_SHAPED here: http://docs.wxwidgets.org/stable/wx_wxframe.html#wxframe
I think it only applies to wx.Frame but maybe you can bind an event to mouse clicks inside the custom-shaped frame.

Kit