Using C# you can have a transparent Form by using the following program. the following code is called in Form load event of windows form.
Soruce Code :
private void Myform_Load(object sender, EventArgs e)
{
this.TransparencyKey = Color.Black;
this.BackColor = Color.Black;
}
No comments:
Post a Comment