tags:

views:

64

answers:

2

How to make Form Transperent in windows c# ? I have a GridView in my form, which should be visible.

+1  A: 

Opacity and Transparency Key should help you.

Check this site for some answers. You may want to add a panel to your form and make that transparent.

Sev
If i set the form opacity, All the controls in form also take effect. I dont want to do so. I want the controls to be visible and background as transparent.
Anuya
+2  A: 

Set the "Transparancy Key" property and the "BackColor" property of the form to the same color. You also need to make sure no other control has the same color... Especially the images...

The King