Posted 7 years ago
by Ralph
What about disabling the glassy animation running across the colored area when AnimatedProgressBar is disabled?
I suspect it should be a no brainer, shouldn't hurt anyone.
In the control template add the following lines at the end:
<!-- Stop the animation that moves across the colored area when IsEnabled is false-->
<Trigger Property="UIElement.IsEnabled" Value="false">
<Setter TargetName="animation" Property="Visibility" Value="Collapsed" />
</Trigger>