Exemple #1
0
 /// <summary>
 /// Clears the steps and goes to the first step of the wizard.
 /// </summary>
 public void Clear()
 {
     if (Steps != null)
     {
         foreach (var step in Steps)
         {
             step.Clear();
         }
     }
     FirstStep?.Select();
 }