We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1195351 commit ddb5c7fCopy full SHA for ddb5c7f
src/WPFDevelopers.Samples.Shared/Helpers/RelayCommand.cs
@@ -8,6 +8,10 @@ public class RelayCommand : ICommand
8
private readonly Func<object, bool> canExecuteFunc;
9
private readonly Action<object> executeAction;
10
11
+ public RelayCommand()
12
+ {
13
+ }
14
+
15
public RelayCommand(Action<object> execute)
16
: this(execute, null)
17
{
0 commit comments