/// <summary>
 /// Displays the confirmation message box
 /// </summary>
 public void Show()
 {
     ModalDialog.Show();
     if (OnShow != null)
     {
         OnShow();
     }
 }
 /// <summary>
 /// Dismisses the confirmation box.
 /// </summary>
 public void Close()
 {
     ModalDialog.Hide();
     if (OnHide != null)
     {
         OnHide();
     }
 }
Esempio n. 3
0
 /// <summary>
 /// Displays the confirmation message box
 /// </summary>
 public void Show()
 {
     ModalDialog.Show();
     TimerTimeout.Interval = Timeout;
     TimerTimeout.Enabled  = true;
 }
Esempio n. 4
0
 /// <summary>
 /// Dismisses the confirmation box.
 /// </summary>
 public void Close()
 {
     ModalDialog.Hide();
     TimerTimeout.Enabled = false;
 }