Files
StructureHelper/StructureHelper/Infrastructure/RelayCommand.cs
2023-02-12 23:38:24 +05:00

28 lines
786 B
C#

using System;
using System.Windows.Input;
namespace StructureHelper.Infrastructure
{
public class RelayCommand : ICommand
{
private Action<object> execute;
private Func<object, bool> canExecute;
public event EventHandler CanExecuteChanged
{
add => CommandManager.RequerySuggested += value;
remove => CommandManager.RequerySuggested -= value;
}
public RelayCommand(Action<object> execute, Func<object, bool> canExecute = null)
{
this.execute = execute;
this.canExecute = canExecute;
}
public bool CanExecute(object parameter) => canExecute == null || canExecute(parameter);
public void Execute(object parameter) => execute(parameter);
}
}