在构造函数中这样写,可以实现的:
public Form1()
{
InitializeComponent();
this.BackColor = Color.White;
this.TransparencyKey = Color.White;
this.FormBorderStyle = FormBorderStyle.None;
}
Label的ForeColor为黑色,就可以了。在做播放器的歌词显示的时候就是那样做的。
label是form的子窗口 窗体的Opacity为0后 label自然要继承过来
要解决这个问题,可以这样设置.
FormBorderStyle 属性设置为 none .
使Form和Label的Size属性一样
Lable的location属性为(0,0)
gdi+ 不建议使用窗体隐藏.