using System.Windows; namespace FSI.BT.Tools.Commands { /// /// Shows the main window. /// public class ExitCommand : CommandBase { public override void Execute(object parameter) { Application.Current.Shutdown(); } public override bool CanExecute(object parameter) { return true; } } }