要把label控件的背景设置为透明,可把该控件的什么属性设置为什么?

2024-11-16 21:46:09
推荐回答(4个)
回答1:

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加载时运行~~

回答2:

把Label的属性里面的BackColor里面的web下面有个Transparent..第一个就是

回答3:

窗体的透明度是Opacity 控制的,你可以看看lable有没有·这个属性

回答4:

label控件设置成透明?问题有点问题吧