EditCategory
Animation
EditQuestion
By default, an animation will overwrite the animated property's value to the "To" value of the animation after the animation completes. Since animations have the highest priority when it comes to evaluating a property's value, the property's "effective" value will remain the "To" value of the animation. This will make changing the property's value impossible. How can this be prevented?
EditAnswer
This behavior is driven by the "FillBehavior" property of the animation. By default, FillBehavior has the value of "HoldEnd", which causes the overwrite of the property value once animation completes. Changing the FillBehavior of the animation to "Stop" will prevent the overwrite and allow assignments to the property.
EditSource Link
http://groups.google.com/group/microsoft.public.windows.developer.winfx.avalon/browse_thread/thread/7d6a36a5e9181edbEditKeywords
animation, overwrite, fill behavior, precedence