BalloonsPop.GraphicUserInterface.Commands.WpfExitCommand.Execute C# (CSharp) 메소드

Execute() 공개 메소드

Executes the exit command in a provided context.
public Execute ( IContext context ) : void
context IContext The execution context for the command.
리턴 void
        public override void Execute(IContext context)
        {
            Application.Current.Shutdown(WpfExitCode);
            base.Execute(context);
        }