You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
830 B
33 lines
830 B
1 year ago
|
using System;
|
||
|
using System.Windows.Input;
|
||
|
|
||
|
namespace SSWMS.Client
|
||
|
{
|
||
|
public class SimpleDelegateCommand : ICommand
|
||
|
{
|
||
|
// Specify the keys and mouse actions that invoke the command.
|
||
|
public Key GestureKey { get; set; }
|
||
|
public ModifierKeys GestureModifier { get; set; }
|
||
|
public MouseAction MouseGesture { get; set; }
|
||
|
|
||
|
Action<object> _executeDelegate;
|
||
|
|
||
|
public SimpleDelegateCommand(Action<object> executeDelegate)
|
||
|
{
|
||
|
_executeDelegate = executeDelegate;
|
||
|
}
|
||
|
|
||
|
public void Execute(object parameter)
|
||
|
{
|
||
|
_executeDelegate(parameter);
|
||
|
}
|
||
|
|
||
|
public bool CanExecute(object parameter) { return true; }
|
||
|
public event EventHandler CanExecuteChanged
|
||
|
{
|
||
|
add { }
|
||
|
remove { }
|
||
|
}
|
||
|
}
|
||
|
}
|