I have many media elements in my application that are streamed via web. Sometimes I need to wait 2-3 seconds for that. That isn't a problem for me. The problem is that I don't know how to make some kind of animation of loading. I have an animated gif of loading bar but I don't know how to display it. Any ideas ?
|
|
closed as not a real question by casperOne♦ Oct 8 '12 at 11:46
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
You don't need a give for it. There is a XAML Control ProgressRing. Bind it's IsActive property to a property which indicates that you are loading. Something like:
For the XAML something like:
Thanks to the binding (and the BindableBase which comes from the standard MS Templates (otherwise you need to implement INotifyPropertyChanged)) the ProgressRing will automatically get active, when your dataservice is doing something. |
|||
|
|
|
ProgressBar is also available, which is the horizontal loading bar similar to Windows Phone 7 For an indeterminate progress bar, you can use
|
|||
|
|