Drawing interactively on
PictureBox
makes little sense, as most of the thing people try to do with this component. You really need to draw on custom control (derived from
System.Windows.Forms.Control
),
Panel
, even on Form, but not on
PictureBox
. You can even save the image after interactive drawing if you abstract out the rendering method (by drawing on other media such as
System.Drawing.Bitmap
and saving it).
To read about how to do it, please see my past answer:
How do I clear a panel from old drawing[
^].
—SA