transparent text box c# code example
Example 1: set textbox colour to transparent c#
//get the same Effect by setting the textbox color to form color
textBox1.BackColor = this.BackColor;
Example 2: c# transparent label
label1.BackColor = System.Drawing.Color.Transparent;