I want to make the form background transparent. But not other elements. How do I do that.
+2
A:
Try setting the form's TransparencyKey equal to the form's color.
There's a good tutorial here, detailing how to make a transparent splash screen.
Charlie Salts
2009-08-25 04:47:26
+2
A:
Try setting the transparency key equal to the background color. For example:
this.TransparencyKey = Color.Black;
this.BackColor = Color.Black;
Preetum Nakkiran
2009-08-25 04:48:39