Exemplo n.º 1
0
        protected virtual void OnShowStep(ShowStepEventArgs e)
        {
            ShowStepEventHandler handler = (ShowStepEventHandler)Events[BaseStep.showStep];

            if (handler != null)
            {
                handler(this, e);
            }
        }
Exemplo n.º 2
0
 internal void FireShowEvent(ShowStepEventArgs e)
 {
     OnShowStep(e);
 }