Guest User

Untitled

a guest
Nov 17th, 2017
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. public LoginPage ()
  2. {
  3. InitializeComponent ();
  4. BindingContext = ViewModel;
  5.  
  6. UsernameEntry.Completed += (sender, args) => { PasswordEntry.Focus(); };
  7. PasswordEntry.Completed += (sender, args) => { ViewModel.AuthenticateCommand.Execute(null); };
  8. }
Add Comment
Please, Sign In to add comment