public static object Show(EventHandler <WaitWindowEventArgs> workerMethod, string message, params object[] args) { List <object> arguments = new List <object>(); arguments.AddRange(args); WaitWindow instance = new WaitWindow(); return(instance.Show(workerMethod, message, arguments)); }
public WaitWindowEventArgs(WaitWindow GUI, List <object> args) : base() { this._Window = GUI; this._Arguments = args; }
public static object Show(EventHandler <WaitWindowEventArgs> workerMethod) { return(WaitWindow.Show(workerMethod, null)); }
public static object Show(EventHandler <WaitWindowEventArgs> workerMethod, string message) { WaitWindow instance = new WaitWindow(); return(instance.Show(workerMethod, message, new List <object>())); }