End Google Ads 201810 - BS.net 01 --> Hi all,

if i generate an ellipse in this way and wish to clear it on button click...what shud i use please give some suggestions...

using System.Drawing.Drawing2D;

protected override void OnPaint(PaintEventArgs e)
{

e.Graphics.SmoothingMode = SmoothingMode.AntiAlias;
e.Graphics.DrawEllipse(Pens.Red, 100, 100, 2, 2);

}


Thanks....!!!