hi all,
i'm trying to draw circles on a picture box as follows:
Graphics dc = this.CreateGraphics();
Pen redPen = new Pen(Color.Red, 10);
dc.DrawEllipse(redPen,100,100,50,50);
of course the ellipse (in this case circle) is under the picture. how can i fix this ?
thanx!
i'm trying to draw circles on a picture box as follows:
Graphics dc = this.CreateGraphics();
Pen redPen = new Pen(Color.Red, 10);
dc.DrawEllipse(redPen,100,100,50,50);
of course the ellipse (in this case circle) is under the picture. how can i fix this ?
thanx!