Bläddra i källkod

Fix compile error.

Jeremy Koritzinsky 8 år sedan
förälder
incheckning
8aa95d403e
1 ändrade filer med 1 tillägg och 1 borttagningar
  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; }