Exemple #1
0
 /// <summary>
 /// Shows the ext.
 /// </summary>
 /// <param name="wizard">The wizard.</param>
 public static void ShowExt(this IWizard wizard)
 {
     try {
         if (wizard.InvokeRequired)
         {
             wizard.Invoke(new GenericDelegate(wizard.Show));
         }
         else
         {
             wizard.Show( );
         }
     } catch (ThreadAbortException) {
     }
 }