using System;
using System.Windows.Input;
namespace DragablzDemo
{
///
/// No WPF project is complete without it's own version of this.
///
public class AnotherCommandImplementation : ICommand
{
private readonly Action _execute;
private readonly Func _canExecute;
public AnotherCommandImplementation(Action execute) : this(execute, null)
{
}
public AnotherCommandImplementation(Action execute, Func canExecute)
{
if (execute == null) throw new ArgumentNullException("execute");
_execute = execute;
_canExecute = canExecute ?? (x => true);
}
public bool CanExecute(object parameter)
{
return _canExecute(parameter);
}
public void Execute(object parameter)
{
_execute(parameter);
}
public event EventHandler CanExecuteChanged
{
add
{
CommandManager.RequerySuggested += value;
}
remove
{
CommandManager.RequerySuggested -= value;
}
}
public void Refresh()
{
CommandManager.InvalidateRequerySuggested();
}
}
}