RectNavigation.Animate.Move C# (CSharp) Method

Move() public static method

public static Move ( UIElement element, Point to ) : void
element System.Windows.UIElement
to Point
return void
        public static void Move(UIElement element, Point to)
        {
            Move(element, to.X, to.Y);
        }

Same methods

Animate::Move ( DependencyProperty dependencyProperty, UIElement element, double from, double to, double seconds, AnimationCompletedDelegate callback ) : void
Animate::Move ( UIElement element, Point from, Point to, double seconds, AnimationCompletedDelegate callback ) : void
Animate::Move ( UIElement element, double x, double y ) : void