I cannot find anything like pictureBox.ClearImage() or something.
Thanks in advance
You can simply set the Image and ImageSource to null.
this.pictureBox1.Image = null;
this.pictureBox1.ImageSource = null;
See sample.
Please login first to submit.