How to create Transparent Windows Forms?

With Windows XP, you can control the opacity of windows that are displayed.
To make a form more transparent, adjust its Opacity property.
Set the Opacity property to a percentage between 0.0 (complete transparency) and 1.0 (complete opacity). The Opacity property is a Double value type.

public void MakeTransparent()
{
form1.Opacity = 0.83;
}

By using this you can transparent your windows form.

Tagged . Bookmark the permalink.

Leave a Reply