예제 #1
0
        protected virtual void OnComplete(EffectEventArgs e)
        {
            EventHandler <EffectEventArgs> handler = Complete;

            if (handler != null)
            {
                handler(this, e);
            }
        }
예제 #2
0
        protected virtual void OnStart(EffectEventArgs e)
        {
            EventHandler <EffectEventArgs> handler = Starting;

            if (handler != null)
            {
                handler(this, e);
            }
        }