public class buttton :Button
{

protected override void OnPaint( System.Windows.Forms.PaintEventArgs e )
{
     System.Drawing.Drawing2D.GraphicsPath shape ;
              shape = new System.Drawing.Drawing2D.GraphicsPath();
     shape.AddEllipse(0, 0, this.Width, this.Height);
     this.Region = new System.Drawing.Region(shape);
         }}