PowerArgs.Cli.NotificationButton.NotificationButton_Activated C# (CSharp) 메소드

NotificationButton_Activated() 개인적인 메소드

private NotificationButton_Activated ( ) : void
리턴 void
        private void NotificationButton_Activated()
        {
            var app = Application as ConsolePageApp;
            if (app == null) throw new NotSupportedException("NotificationButton can only be used in a ConsolePageApp");
            app.PageStack.CurrentPage.ShowProgressOperationsDialog();
        }