Exemple #1
0
 public void OnBackStep(ThirdStepNextEventArgs arg)
 {
     if (BackStep != null)
     {
         BackStep(this, arg);
     }
 }
Exemple #2
0
 public void OnNextStep(ThirdStepNextEventArgs arg)
 {
     if (NextStep != null)
     {
         NextStep(this, arg);
     }
 }
 public void OnNextStep(ThirdStepNextEventArgs arg)
 {
     if (NextStep != null) NextStep(this, arg);
 }
 public void OnBackStep(ThirdStepNextEventArgs arg)
 {
     if (BackStep != null) BackStep(this, arg);
 }