Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 ?

share|improve this question

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.

2 Answers

up vote 5 down vote accepted

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:

public class DataService : BindableBase
{
  private bool _isLoading;
  public bool IsLoading 
  {
    get 
    {
      return _isLoading;
    }
    set 
    {
      SetProperty(ref _isLoading, "IsLoading");
    }
  }

  public void MyMethodWhichTakesLongTime() 
  {
    IsLoading = true;

    // Do some time consumption

    IsLoading = false;
  }
}

For the XAML something like:

<ProgressRing IsActive="{Binding IsLoading}" DataContext="{Binding MyDataService}" Width="50" Height="50" />

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.

share|improve this answer
cool that is what I've needed !! Big thanks – Fixus Oct 6 '12 at 13:11

ProgressBar is also available, which is the horizontal loading bar similar to Windows Phone 7

For an indeterminate progress bar, you can use

<ProgressBar Visibility="Visible" IsIndeterminate="True" />
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.