Frist:(简介版)
this.Controls.Remove(label1);
this.label1.BackColor = System.Drawing.Color.Transparent; //label背景色透明
Second:(添了点功能)
this.Controls.Remove(label1);
this.label1.Parent = this.panel1;//这一句设置label在哪个panel里面
this.label1.BackColor = System.Drawing.Color.Transparent; //label背景色透明
this.label1.Location = new System.Drawing.Point(13, 9); //label的位置
以上程序段距放在load下面,为from加载时运行~~
把Label的属性里面的BackColor里面的web下面有个Transparent..第一个就是
窗体的透明度是Opacity 控制的,你可以看看lable有没有·这个属性
label控件设置成透明?问题有点问题吧