public static void AnimateTo(this GeneralTransform transform, Point pt)
 {
     transform.StartAnimation(TranslateTransform.XProperty, pt.X);
     transform.StartAnimation(TranslateTransform.YProperty, pt.Y);
 }