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