private void CbAuthorize_SelectedIndexChanged(object sender, EventArgs e) { TextUsername.Clear(); TextPassword.Clear(); Collectnameuser(CbAuthorize.Text.ToLower()); TextUsername.Focus(); }
private void Login() { try { if (string.IsNullOrWhiteSpace(TextUsername.Text.Trim())) { MessageBox.Show(this, "Saisissez votre nom d'utilisateur", "Message", MessageBoxButtons.OK, MessageBoxIcon.Error); return; } else if (string.IsNullOrWhiteSpace(TextPassword.Text.Trim())) { MessageBox.Show(this, "Saisissez votre mot de passe", "Message", MessageBoxButtons.OK, MessageBoxIcon.Error); return; } else { user = Glossaire.Instance.GetLogin(TextUsername.Text.Trim(), TextPassword.Text); if (user == null) { MessageBox.Show(this, "Identifiants incorrectes", "Message", MessageBoxButtons.OK, MessageBoxIcon.Error); TextUsername.Focus(); } else { User.Instance.UpdateOnlineStatus(user); this.Close(); } } } catch (Exception ex) { MessageBox.Show(this, "Une erreur s'est produite. \nMessage : " + ex.Message.ToString(), "Erreur", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void Login() { if (form_validate() == true) { if (do_login() == true) { this.DialogResult = DialogResult.OK; Form f = new Main(); f.Show(); this.Hide(); } else { XtraMessageBox.Show("Tên đăng nhập hoặc mật khẩu không đúng", "Đăng nhập không thành công"); TextUsername.Text = string.Empty; TextPassword.Text = string.Empty; TextUsername.Focus(); } } }
private void window_Loaded(object sender, RoutedEventArgs e) { TextUsername.Focus(); }