How can I clear draw image on picturebox? The following doesn\'t help me:
pictbox.Image = null; pictbox.Invalidate();
Please help.
Setting the Image property to null will work just fine. It will clear whatever image is currently displayed in the picture box. Make sure that you've written the code exactly like this:
picBox.Image = null;