Exemplo n.º 1
0
 /// <summary>
 /// Shows the wait dialog
 /// </summary>
 public static void ShowWaitScreen()
 {
     if (_waitDialog == null)
     {
         _waitDialog = new WaitInputDialog();
         _waitDialog.Show();
     }
 }
Exemplo n.º 2
0
 /// <summary>
 /// Hides the wait dialog
 /// </summary>
 public static void HideWaitScreen()
 {
     if (_waitDialog != null)
     {
         _waitDialog.Close();
         _waitDialog.Dispose();
         _waitDialog = null;
     }
 }