I am trying to set my back buffer fill to transparent
surfaceSecondary.ColorFill(Color.Transparent)
I receive an error, "This control does not support transparent backgrounds".
If I wanted to do this with a control I could do
Control.SetStyle(ControlStyles.SupportsTransparentBackColor, True)
Is there a way to do this with surfaces?
surfaceSecondary.ColorFill(Color.Transparent)
I receive an error, "This control does not support transparent backgrounds".
If I wanted to do this with a control I could do
Control.SetStyle(ControlStyles.SupportsTransparentBackColor, True)
Is there a way to do this with surfaces?