コード例 #1
0
ファイル: WaitWindow.cs プロジェクト: lhcastaneda/Polsolcom
 public static object Show(EventHandler <WaitWindowEventArgs> workerMethod)
 {
     return(WaitWindow.Show(workerMethod, null));
 }
コード例 #2
0
ファイル: WaitWindow.cs プロジェクト: lhcastaneda/Polsolcom
        public static object Show(EventHandler <WaitWindowEventArgs> workerMethod, string message)
        {
            WaitWindow instance = new WaitWindow();

            return(instance.Show(workerMethod, message, new List <object>()));
        }