<ProgressBar IsIndeterminate="{Binding Working}"/>
The problem with the current version of the control is that it animates on the UI thread. So if your UI is doing something as well it can be kind of jerky.
MSDN has a code snippet that moves the animation to the compositor thread. I'd recommend using this approach as it has a noticeable improvement, animating nice and smoothly.
CodeProject
No comments:
Post a Comment