public static object Show(EventHandler <WaitWindowEventArgs> workerMethod, string message) { WaitWindow instance = new WaitWindow(); return(instance.Show(workerMethod, message, new List <object>())); }
protected object ShowWaitingBox(EventHandler <WaitWindowEventArgs> workerMethod, string message) { return(WaitWindow.Show(workerMethod, message, new List <object>())); }
public static object Show(EventHandler <WaitWindowEventArgs> workerMethod) { return(WaitWindow.Show(workerMethod, null)); }