Hello
I am trying to use the WPF progressbar control with the IsIndeterminate property set to true. The problem I have, is that it doesn't get updated.
I am doing something like this:
pbProgressBar.Visibility = Visibility.Visible;
//do time consuming stuff
pbProgressBar.Visibility = Visibility.Hidden;
I tried to wrap this in a thread and then dispatch it with the Dispatcher object. How should I solve this problem :).