Browse Source

Fix compile error.

pull/1147/head
Jeremy Koritzinsky 9 years ago
parent
commit
8aa95d403e
  1. 2
      samples/BindingTest/ViewModels/NestedCommandViewModel.cs

2
samples/BindingTest/ViewModels/NestedCommandViewModel.cs

@ -12,7 +12,7 @@ namespace BindingTest.ViewModels
{
public NestedCommandViewModel()
{
Command = ReactiveCommand.Create();
Command = ReactiveCommand.Create(() => { });
}
public ICommand Command { get; }

Loading…
Cancel
Save