Hi
I am making a project of chess game for which i have to import gif images of chess pieces .can anyone tell me how to put images in windows forms. do keep in mind that i am making the chess board using GDI+. and do tell me how to move/redraw that image. help in this regard would be appreciated.
Mihai si atatPosted Jan 13, 2006, 11:39 AM
openFileDialog1.ShowDialog();
openFileDialog1.OpenFile();
this.pictureBox1.Image=System.Drawing.Image.FromFile(openFileDialog1.FileName);
this.pictureBox1.SizeMode=PictureBoxSizeMode.StretchImage;