https://msdn.microsoft.com/zh-cn/library/f152hbx4(v=vs.110).aspx
此示例向窗体提供随该窗体一起调整大小的椭圆形状。
protected override void OnPaint(System.Windows.Forms.PaintEventArgs e)
{
System.Drawing.Drawing2D.GraphicsPath shape = new System.Drawing.Drawing2D.GraphicsPath();
shape.AddEllipse(0, 0, this.Width, this.Height);
this.Region = new System.Drawing.Region(shape);
}