SuperMap.WindowsPhone.Mapping.PanAnimation.PanAnimation C# (CSharp) Method

PanAnimation() public method

public PanAnimation ( FrameworkElement element ) : System
element System.Windows.FrameworkElement
return System
        public PanAnimation(FrameworkElement element)
        {
            this.element = element;
            this.element.RenderTransform = new TranslateTransform();
            this.easingFunction = new QuarticEase { EasingMode = EasingMode.EaseOut };
        }