ShowNotificationMessage() public method

public ShowNotificationMessage ( string message, string progressText, bool stopProgress, string commadTitle, MethodInvoker, command ) : void
message string
progressText string
stopProgress bool
commadTitle string
command MethodInvoker,
return void
コード例 #1
0
ファイル: SplashScreen.cs プロジェクト: zhouzu/cs-script
 public static void ShowNotification(string message, string progressLabel, bool stopProgressbar, string commadTitle, MethodInvoker command)
 {
     try
     {
         //instance.Invoke((MethodInvoker)delegate { Application.ExitThread(); });
         instance.ShowNotificationMessage(message, progressLabel, stopProgressbar, commadTitle, command);
     }
     catch { }
 }