BalloonsPop.GraphicUserInterface.Commands.WpfExitCommand.Execute C# (CSharp) Method

Execute() public method

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