Ejemplo n.º 1
0
        public void onAnimationCompleted(object sender, EventArgs e)
        {
            if (--completedLeft == 0 && animationCallbackObject != null)
            {
                storyboard.Stop();
                if (animType == AnimType.COMPLEX)
                {
                    animationCallbackObject.animationFinished(dx, dy);
                }
                else
                {
                    animationCallbackObject.animationFinishedSimple();
                }

                animationCallbackObject = null;
            }
        }