Например так:
private void button1_Click(object sender, EventArgs e)
{
System.Drawing.Drawing2D.GraphicsPath p = new System.Drawing.Drawing2D.GraphicsPath();
p.AddEllipse(new Rectangle(new Point(0,0), this.Size));
System.Drawing.Region r = new Region(p);
this.Region = r;
}