メソッドでアニメーションを開始しましたが、完了していない場合は後で停止してすぐに完了する必要があります。
Vector diff = ...
DoubleAnimation aniX = new DoubleAnimation(diff.X, TimeSpan.FromSeconds(0.4));
DoubleAnimation aniY = new DoubleAnimation(diff.Y, TimeSpan.FromSeconds(0.4));
aniX
完了しaniY
ていない場合は停止します。