首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > C# >

C#设立背景透明

2012-10-19 
C#设置背景透明1. asp:labelId label1 BackColor Transparent 2.this.label1.BackColorSystem.Dr

C#设置背景透明

1. <asp:label Id= "label1 " BackColor= "Transparent ">
2.this.label1.BackColor = System.Drawing.Color.Transparent;
3.在窗体的Load事件中加上这句代码试试看
SetStyle(ControlStyles.ResizeRedraw | ControlStyles.SupportsTransparentBackColor, true);

热点排行