public void UpdateLoginStatus()
 {
     if (!string.IsNullOrEmpty(this.Username) && !string.IsNullOrEmpty(this.Password))
     {
         EnableOk?.Invoke(this, EventArgs.Empty);
     }
     else
     {
         DisabledOk?.Invoke(this, EventArgs.Empty);
     }
 }
Exemplo n.º 2
0
 public void UpdateLoginStatus()
 {
     EnableOk?.Invoke(this, EventArgs.Empty);
 }