C# 在windows form实现不规则窗体&透明窗体

private void Form1_Load(object sender, EventArgs e)
{
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.BackColor = Color.Red;
this.TransparencyKey = this.BackColor;
}

http://blog.csdn.net/haukwong/article/details/6853874

原文地址:https://www.cnblogs.com/daming1233/p/6613762.html