How can I clear draw image on picturebox? The following doesn\'t help me:
pictbox.Image = null; pictbox.Invalidate();
Please help.
As others have said, setting the Image property to null should work.
Image
null
If it doesn't, it might mean that you used the InitialImage property to display your image. If that's indeed the case, try setting that property to null instead:
pictBox.InitialImage = null;