Explorar el Código

Fix compile error.

Jeremy Koritzinsky hace 8 años
padre
commit
8aa95d403e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      samples/BindingTest/ViewModels/NestedCommandViewModel.cs

+ 1 - 1
samples/BindingTest/ViewModels/NestedCommandViewModel.cs

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