c sharp Transparent Windows Form

 
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

Sending SMS Via Windows Form Application Using any Android Smart Phone  Source Code  using System ; using System . C...