设置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
}
原文地址:https://www.cnblogs.com/godlessspirit/p/12928467.html