标签: c# windows forms transparency
所以我通过以下方式将表单的背景设置为透明:
this.BackColor = Color.Red; this.TransparencyKey = Color.Red;
哪种方法很好,但是当我现在想要在其上面显示一个带有文本框的半透明图像时,我的表单的透明背景变为红色,我绘制透明图像。
关于如何阻止这种情况发生的任何想法?
干杯!