Hi, how can I set the image source to image in winforms?
my images are in the Resources folder only in the application
I tried like this
PictureBox pb = new PictureBox (); pb.Image = Image.FromFile ("Resources / a.gif");
But it shows an exception not found.
Thank you in advance
source share