Created
June 11, 2015 19:45
-
-
Save julesx/34aa4474482079c571c6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class RelayCommand : ICommand | |
{ | |
#region Fields | |
readonly Action<object> _execute; | |
readonly Predicate<object> _canExecute; | |
#endregion // Fields | |
#region Constructors | |
public RelayCommand(Action<object> execute) | |
: this(execute, null) | |
{ | |
} | |
public RelayCommand(Action<object> execute, Predicate<object> canExecute) | |
{ | |
if (execute == null) | |
throw new ArgumentNullException("execute"); | |
_execute = execute; | |
_canExecute = canExecute; | |
} | |
#endregion // Constructors | |
#region ICommand Members | |
[DebuggerStepThrough] | |
public bool CanExecute(object parameter) | |
{ | |
return _canExecute == null || _canExecute(parameter); | |
} | |
public event EventHandler CanExecuteChanged | |
{ | |
add { CommandManager.RequerySuggested += value; } | |
remove { CommandManager.RequerySuggested -= value; } | |
} | |
public void Execute(object parameter) | |
{ | |
_execute(parameter); | |
} | |
#endregion // ICommand Members | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment