-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathActionCommand.cs
76 lines (59 loc) · 1.96 KB
/
ActionCommand.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
// ReSharper disable UnusedMember.Global
// ReSharper disable UnusedType.Global
using System;
using System.Windows.Input;
namespace fs2ff
{
public class ActionCommand : ICommand
{
private readonly Action _action;
private readonly Func<bool> _predicate;
public ActionCommand()
{
_action = () => { };
_predicate = () => true;
}
public ActionCommand(Action action)
{
_action = action;
_predicate = () => true;
}
public ActionCommand(Action action, Func<bool> predicate)
{
_action = action;
_predicate = predicate;
}
public event EventHandler? CanExecuteChanged;
public bool CanExecute(object? _) => _predicate();
public void Execute(object? parameter) => _action();
public void TriggerCanExecuteChanged() => CanExecuteChanged?.Invoke(this, new EventArgs());
}
public class ActionCommand<T> : ICommand where T : struct
{
private readonly Action<T?> _action;
private readonly Func<T?, bool> _predicate;
public ActionCommand()
{
_action = _ => { };
_predicate = _ => true;
}
public ActionCommand(Action<T?> action)
{
_action = action;
_predicate = _ => true;
}
public ActionCommand(Action<T?> action, Func<T?, bool> predicate)
{
_action = action;
_predicate = predicate;
}
public event EventHandler? CanExecuteChanged;
public bool CanExecute(object? parameter) => parameter is T param ? _predicate(param) : _predicate(null);
public void Execute(object? parameter)
{
if (parameter is T param) _action(param);
else _action(null);
}
public void TriggerCanExecuteChanged() => CanExecuteChanged?.Invoke(this, new EventArgs());
}
}