36 lines
941 B
C#
36 lines
941 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using System.Windows.Input;
|
|||
|
|
|||
|
namespace EmployeeManager.Model
|
|||
|
{
|
|||
|
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)
|
|||
|
{
|
|||
|
_execute = execute;
|
|||
|
_canExecute = canExecute;
|
|||
|
}
|
|||
|
|
|||
|
public bool CanExecute(object parameter)
|
|||
|
{
|
|||
|
return _canExecute == null || _canExecute(parameter);
|
|||
|
}
|
|||
|
|
|||
|
public void Execute(object parameter)
|
|||
|
{
|
|||
|
_execute(parameter);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|