Thursday 16 October 2014

Windows Phone - Load Images from Web Url

You can load an image from the internet and display in your Silverlight Windows Phone Application.
The C# code is:
Uri uri = new Uri("http://Habeeb.in/pic.jpg", UriKind.Absolute)
image1.Source = new BitmapImage(uri);
Happy coding....

No comments:

Post a Comment