예제 #1
0
 public void ShowCompletion(string text)
 {
     if (BusyHider != null)
     {
         BusyHider.ShowCompletion(text);
     }
 }
예제 #2
0
 private void SetInitialFocus(Control control)
 {
     // If busy, setting the focus doesn't work, as the control is enabled. Wait until done.
     BusyHider.OnDoneBusy(() =>
     {
         control.Focus();
     });
 }