As others have said, setting the Image
property to null
should work.
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;