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