Hi I want to set dynamic path to my picture box in winforms. Is it possible to do like this
my image is here some thing like
http://www.indianorphanages.net/images/india-political-map.gif
now I want to bind it to picture box (winforms)
Is it possible?
Try:
pictureBox1.ImageLocation =
"http://www.indianorphanages.net/images/india-political-map.gif";
To update a picture box from a file you can use the Load method:
pictureBox.Load(filename);
From the help:
Load(String) Sets the ImageLocation to the specified URL and displays the image indicated.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With