/// <summary>
 /// Displays the confirmation message box
 /// </summary>
 public void Show()
 {
     ModalDialog.Show();
     if (OnShow != null)
     {
         OnShow();
     }
 }
Exemplo n.º 2
0
 /// <summary>
 /// Displays the confirmation message box
 /// </summary>
 public void Show()
 {
     ModalDialog.Show();
     TimerTimeout.Interval = Timeout;
     TimerTimeout.Enabled  = true;
 }