Skip to content
This repository has been archived by the owner on Nov 10, 2022. It is now read-only.

Commit

Permalink
OneWayBind
Browse files Browse the repository at this point in the history
  • Loading branch information
DanGould committed Oct 27, 2019
1 parent 2fea590 commit 287b0eb
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Chaincase/Views/MnemonicPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@ public MnemonicPage()
this.BindCommand(ViewModel,
vm => vm.AcceptCommand,
v => v.Accept)
.DisposeWith(disposables);

this.Bind(ViewModel,
.DisposeWith(disposables);
this.OneWayBind(ViewModel,
vm => vm.MnemonicString,
v => v.Mnemonic.Text)
.DisposeWith(disposables);
Expand Down

0 comments on commit 287b0eb

Please sign in to comment.