소스 검색

Fix compile error.

Jeremy Koritzinsky 8 년 전
부모
커밋
8aa95d403e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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; }