示例#1
0
        protected void OnRaiseAnimationCallbackEvent(AnimationCallbackEventArgs e)
        {
            EventHandler <AnimationCallbackEventArgs> handler = RaiseAnimationCallbackEvent;

            if (handler != null)
            {
                handler(this, e);
            }
        }
示例#2
0
 protected void OnRaiseAnimationCallbackEvent(AnimationCallbackEventArgs e)
 {
     EventHandler<AnimationCallbackEventArgs> handler = RaiseAnimationCallbackEvent;
     if (handler != null)
         handler(this, e);
 }