Skip to content

Commit ddb5c7f

Browse files
committed
Update RelayCommand.cs
1 parent 1195351 commit ddb5c7f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/WPFDevelopers.Samples.Shared/Helpers/RelayCommand.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ public class RelayCommand : ICommand
88
private readonly Func<object, bool> canExecuteFunc;
99
private readonly Action<object> executeAction;
1010

11+
public RelayCommand()
12+
{
13+
}
14+
1115
public RelayCommand(Action<object> execute)
1216
: this(execute, null)
1317
{

0 commit comments

Comments
 (0)