I wanted to display an image to the windows forms, but i already did this and the image did not come out.
Where did I go wrong?
Here is the code:
I display images in windows forms when I put it in Load event like this:
private void Form1_Load( object sender , EventArgs e ) { pictureBox1.ImageLocation = "./image.png"; //path to image pictureBox1.SizeMode = PictureBoxSizeMode.AutoSize; }