Hi how can i set image source to an image in winforms?

my images are in Resources folder in the application only

I tried like this

PictureBox pb = new PictureBox(); pb.Image = Image.FromFile("Resources/a.gif");

But it is showing file not found exception.

Thanks in advance

link|improve this question

30% accept rate
feedback

2 Answers

up vote 7 down vote accepted

If the image is in your application's resources, you can do that :

pb.Image = Properties.Resources.a
link|improve this answer
Thank you verymuch this is what i'm searching for – Nagu Jul 30 '09 at 8:43
feedback

pictureBox1.Image = Properties.Resources.[image name];

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.