tags:

views:

92

answers:

2

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
+2  A: 

Try setting the transparency key equal to the background color. For example:

        this.TransparencyKey = Color.Black;
        this.BackColor = Color.Black;
Preetum Nakkiran