NetworkVis.UniversePadPoint.Padback_Grow C# (CSharp) 메소드

Padback_Grow() 공개 메소드

public Padback_Grow ( object sender, System.Windows.Input.MouseEventArgs e ) : void
sender object
e System.Windows.Input.MouseEventArgs
리턴 void
        public void Padback_Grow(object sender, MouseEventArgs e)
        {
            double fromy;
            double toy;
            int duration = 300;

            fromy = 1;
            toy = 3.5;

            Animator.AnimatePenner(Padback, Rectangle.StrokeThicknessProperty, Tween.Equations.CubicEaseIn, fromy, toy, duration, OnAnimationComplete, OnAnimationComplete);
            
        }