Reputation: 1
I'm new into Windows phone so I've a question:
I would like to get a picture from a site in my application.
Say that I should use this picture: http://static.lampandlight.eu/img/deltalight-vice-versa-f-led-zwart-goud-mat_89221-1.jpg
How should I do it?
Thanks
Upvotes: 0
Views: 72
Reputation: 1081
Upvotes: 0
Reputation: 16826
Something like this should work:
BitmapImage image = new BitmapImage(new Uri("URL_TO_IMAGE", UriKind.Absolute));
imageControl.Source = image;
Upvotes: 2