This question is locked. New answers and comments are not allowed.
<telerikCore:RadMoveAnimation x:Key="ValidationAnimation" FillBehavior="Inherit" Duration="0:0:0.5" AutoReverse="False" EndPoint="0,60" />var animation = this.LayoutRoot.Resources["ValidationAnimation"] as RadMoveAnimation;RadAnimationManager.Play(this.ValidationGrid, animation, delegate{ var retanim = animation.CreateOpposite() as RadMoveAnimation; RadAnimationManager.Play(this.ValidationGrid, animation);});Hi, i try to manual reverse move animation, but in this simple code, grid move but dont go's back.