How can I clear draw image on picturebox? The following doesn\'t help me:
pictbox.Image = null; pictbox.Invalidate();
Please help.
if (pictureBox1.Image != null) { pictureBox1.Image.Dispose(); pictureBox1.Image = null; }