We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3f4c42 commit 76b7e52Copy full SHA for 76b7e52
Examples/ReactiveExample/LoginView.cs
@@ -100,7 +100,7 @@ public LoginView (LoginViewModel viewModel)
100
ViewModel
101
.WhenAnyValue (x => x.IsValid)
102
.Select (valid => valid ? SchemeManager.GetScheme ("Base") : SchemeManager.GetScheme ("Error"))
103
- .BindTo (validation, x => x.GetScheme ())
+ .Subscribe (scheme => validation.SetScheme (scheme))
104
.DisposeWith (_disposable);
105
})
106
.AddControlAfter<Button> ((previous, login) =>
0 commit comments