Advertisement
Guest User

Untitled

a guest
May 2nd, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.35 KB | None | 0 0
  1. // why is "Logging in. Please wait..." never displayed?
  2. private void ctrlLogin_Click(object sender, RoutedEventArgs e) {
  3.             ctrlInstructions.Text = "Logging in. Please wait...";
  4.             string username = ctrlUsername.Text;
  5.             string password = ctrlPassword.Password;
  6.             _controller.Login(username, password, this);
  7.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement