Exemplo n.º 1
0
        protected virtual void OnStepDismissed(ShowcaseStepEventArgs e)
        {
            var handler = StepDismissed;

            if (handler != null)
            {
                handler(this, e);
            }
        }
Exemplo n.º 2
0
 protected virtual void OnStepDisplayed(ShowcaseStepEventArgs e)
 {
     var handler = StepDisplayed;
     if (handler != null)
     {
         handler(this, e);
     }
 }