SplashScreen.ShowNotification C# (CSharp) 메소드

ShowNotification() 공개 정적인 메소드

public static ShowNotification ( string message, string progressLabel, bool stopProgressbar, string commadTitle, MethodInvoker, command ) : void
message string
progressLabel string
stopProgressbar bool
commadTitle string
command MethodInvoker,
리턴 void
    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 { }
    }