I've created a custom .NET MyUserControl which uses a 3rd party c++ library to draw on the MyUserControl using the MyUserControl.Control.Handle.
When I place a child control (i.e. PictureBox) with BackgroundColor = Transparent over the MyUserControl, the transparency of picturebox does not work - the picturebox shows the original background color of MyUserControl -> as if the actual drawing by the lib is ignored.
Is there some way how to setup the picturebox so it is still transparent over MyUserControl?