C# 在windows form实现不规则窗体&透明窗体
Posted C#菜鸟之行
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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
以上是关于C# 在windows form实现不规则窗体&透明窗体的主要内容,如果未能解决你的问题,请参考以下文章