设置form窗体背景透明
原文地址:https://stackoverflow.com/questions/4387680/transparent-background-on-winforms
this.BackColor = Color.LimeGreen; this.TransparencyKey = Color.LimeGreen;
protected override void OnPaintBackground(PaintEventArgs e) { //empty implementation }
转载请注明出处