This question is locked. New answers and comments are not allowed.
currently i have a simple page with an image in it to view an image full screen (wp7 mango) from a resource on the web:
I see how to use the SlideView using URI as string[] but not sure how I'd be able to use bitmap as source for the progress bar as some of these photos take a while to load. Thanks for any pointers.
Uri myUri = new Uri("http://somesite.com/image.aspx?id=99", UriKind.RelativeOrAbsolute);BitmapImage myBitmap = new BitmapImage(myUri);myBitmap.DownloadProgress += new EventHandler<DownloadProgressEventArgs>(myBitmap_DownloadProgress);SystemTray.SetProgressIndicator(this, App.progInd);this.imgFullScreen.Source = myBitmap;I see how to use the SlideView using URI as string[] but not sure how I'd be able to use bitmap as source for the progress bar as some of these photos take a while to load. Thanks for any pointers.