c# - How can i get picture by having the URL? -
c# - How can i get picture by having the URL? -
i need find way show image on application form having url of image.
how can ?
the application silverlight application , url can image facebook
for winform utilize system.net.httpwebrequest
class. have @ link.
for silverlight do
uri uri = new uri("http://test.com/abc.jpg"); //just dummy uri yourimage.source = new bitmapimage(uri);
c# silverlight facebook
Comments
Post a Comment