/// <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(); } }
/// <summary> /// Displays the confirmation message box /// </summary> public void Show() { ModalDialog.Show(); TimerTimeout.Interval = Timeout; TimerTimeout.Enabled = true; }
/// <summary> /// Dismisses the confirmation box. /// </summary> public void Close() { ModalDialog.Hide(); TimerTimeout.Enabled = false; }