using System; using System.Windows.Input; namespace WatchDogWindowApp.WPF { public class AnotherCommandImplementation : ICommand { private readonly Action _execute; private readonly Func _canExecute; public AnotherCommandImplementation(Action execute) : this(execute, null) { } public AnotherCommandImplementation(Action execute, Func canExecute) { if (execute == null) throw new ArgumentNullException(nameof(execute)); _execute = execute; _canExecute = canExecute ?? (x => true); } public bool CanExecute(object parameter) { return _canExecute(parameter); } public void Execute(object parameter) { _execute(parameter); } public event EventHandler CanExecuteChanged { add { CommandManager.RequerySuggested += value; } remove { CommandManager.RequerySuggested -= value; } } public void Refresh() { CommandManager.InvalidateRequerySuggested(); } } }