This is a migrated thread and some comments may be shown as answers.

pinchandzoom

1 Answer 44 Views
SlideView
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Mark
Top achievements
Rank 1
Mark asked on 01 Jan 2012, 07:44 AM
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:

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.

1 Answer, 1 is accepted

Sort by
0
Georgi
Telerik team
answered on 04 Jan 2012, 10:02 AM
Hi Mark,

Thank you for your question.

As of the Q3 2011 SP1 release, the SlideViewPictureSource class supports raw ImageSource instances passed directly as ItemsSource.

Could you please download the latest version and see whether it will work for you?

I am looking forward to your reply.

All the best,
Georgi
the Telerik team

Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>

Tags
SlideView
Asked by
Mark
Top achievements
Rank 1
Answers by
Georgi
Telerik team
Share this question
or