In my WP8 application I use a ProgressIndicator
and I'd like it to fade out before making it invisible. I can't find any documentation describing how I can do that, the only exposed property of ProgressIndicator
is IsVisible
which does not provide any animation.
Yet in some applications I can clearly see progress bar fading out.
So how can I make it fade out?
Unfortunately you can't animate the Shell components of WP7/WP8 beyond their default animations. As ProgressIndicator & SystemTray are part of the Shell UI (alongside with ApplicationBar, MessageBox and others) you'll have to settle for the buit-in transitions.
If this really troubles you, you can always recreate the ProgressIndicator exprience with a managed ProgressBar as part of your app's
<Frame />
Template.