How do I draw a circle and line in the picturebox?

Alexry picture Alexry · Apr 28, 2010 · Viewed 76k times · Source

How do I draw a circle and line in the picturebox?

Answer

Paul Sasik picture Paul Sasik · Apr 28, 2010

or:

    private void pictureBox1_Paint(object sender, PaintEventArgs e)
    {
        e.Graphics.DrawLine(
            new Pen(Color.Red,2f), 
            new Point(0,0), 
            new Point(pictureBox1.Size.Width, pictureBox1.Size.Height ));

        e.Graphics.DrawEllipse(
            new Pen(Color.Red, 2f),
            0,0, pictureBox1.Size.Width, pictureBox1.Size.Height  );
    }

Handle the paint event of the picture box and do your custom drawing there.