C#Form窗体背景透明

先将窗口的背景透明,然后设置背景图片。
让窗口透明:
this.TransparencyKey = Color.Red;
this.BackColor = Color.Red;

若要控制整个窗体的透明度:
调整窗体的Opacity透明百分比。

相关文章: