UPDATE I completely rephrased the question
I want to create a window with round corners, that's also semi-transparent.
I managed to make a frame semi-transparent by calling the SetTransparent( alpha )
method, however, I still don't know how to make the window have no background.
I tried to get the device context (dc) of the window and set the background brush to wx.TRANSPARENT_BRUSH
but that doesn't seem to have any effect.
I'm seeking a kind of effect similar to this for instance, but I want to do it without using a bitmap (i.e. without any external media file).
How do I set the background to nothing?
Update:
it seems what I want is called "shaped window". I'm looking a bit further into that, but still the question is: how can I make one without using any external media file (i.e. purely in code).