Load image into PictureBox

  • Thread starter Thread starter Paolo
  • Start date Start date
if (pictureBox.Image != null)
{
pictureBox.Image.Dispose();
}
pictureBox.Image = new Bitmap("exampe.bmp");
 
Back
Top