ODD One out Quiz

Friday, 28 March 2014

C# code to open the image in Picture box Control

//Code to open the image in picture box
{
OpenFileDialog o = new OpenFileDialog();
  o.ShowDialog();
  pictureBox1.Image = Image.FromFile(o.FileName);
}

No comments:

Post a Comment