views:

75

answers:

1

How does one animate a ProgressBar whose Value property is databound?

<ProgressBar Height="25" Margin="5" Maximum="100" Value="{Binding CurrentProgress}">

My data source would probably "jump" from value to value, usually from user input; for example - user performs action, and the progress bar jumps 20 points. I would want to be able to take the new number for ProgressBar.Value and smooth it over in the animation. Let's say the new value is 50 and the old value is 20. I would want some sort of XAML markup to dictate that the UI to smoothly slides from 20 to 50.

I want to do this declaratively with no code-behind. I'm fairly sure it's possible but I can't seem to fit in the pieces together. I have looked into Storyboards, but don't know how to trigger a storyboard when data changes. I have also looked into the TransitioningContentControl but am unsure how to link the transition with the ProgressBar control.