Created
February 12, 2015 18:30
-
-
Save BrianJVarley/a8b9935a8b4a2e3ed1b3 to your computer and use it in GitHub Desktop.
This file contains 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
using System; | |
using System.Diagnostics; | |
using System.Windows.Input; | |
namespace MyoTestv4 | |
{ | |
/// <summary> | |
/// A command whose sole purpose is to | |
/// relay its functionality to other | |
/// objects by invoking delegates. The | |
/// default return value for the CanExecute | |
/// method is 'true'. | |
/// </summary> | |
public class RelayCommand : ICommand | |
{ | |
#region Fields | |
readonly Action<object> _execute; | |
readonly Predicate<object> _canExecute; | |
#endregion // Fields | |
#region Constructors | |
/// <summary> | |
/// Creates a new command that can always execute. | |
/// </summary> | |
/// <param name="execute">The execution logic.</param> | |
public RelayCommand(Action<object> execute) | |
: this(execute, null) | |
{ | |
} | |
/// <summary> | |
/// Creates a new command. | |
/// </summary> | |
/// <param name="execute">The execution logic.</param> | |
/// <param name="canExecute">The execution status logic.</param> | |
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 parameters) | |
{ | |
return _canExecute == null ? true : _canExecute(parameters); | |
} | |
public event EventHandler CanExecuteChanged | |
{ | |
add { CommandManager.RequerySuggested += value; } | |
remove { CommandManager.RequerySuggested -= value; } | |
} | |
public void Execute(object parameters) | |
{ | |
_execute(parameters); | |
} | |
#endregion // ICommand Members | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment