12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Input;
- namespace Rkis29.ViewModel
- {
- 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> excute, Func<object, bool> canExecute = null)
- {
- _execute = excute;
- _canExecute = canExecute;
- }
- public bool CanExecute(object parameter)
- {
- return _canExecute == null || _canExecute(parameter);
- }
- public void Execute(object parameter)
- {
- _execute(parameter);
- }
- }
- }
|