using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Input; namespace OUP { public class RelayCommand : ICommand { private Action _execute; private Func _canExecute; public event EventHandler CanExecuteChanged { add { CommandManager.RequerySuggested += value; } remove { CommandManager.RequerySuggested -= value; } } public RelayCommand(Action execute, Func canExecute = null) { this._execute = execute; this._canExecute = canExecute; } public bool CanExecute(object parameter) { return this._canExecute == null || this._canExecute(parameter); } public void Execute(object parameter) { this._execute(parameter); } } }