Control.Validated Zdarzenie

Definicja

Występuje po zakończeniu sprawdzania poprawności formantu.

C#
public event EventHandler Validated;
C#
public event EventHandler? Validated;

Typ zdarzenia

Przykłady

Poniższy przykład kodu używa klasy TextBox pochodnej i weryfikuje adres e-mail wprowadzony przez użytkownika. Jeśli adres e-mail nie jest w standardowym formacie (zawierającym "@" i "."), walidacja zakończy się niepowodzeniem ErrorProvider , zostanie wyświetlona ikona i zdarzenie zostanie anulowane. Ten przykład wymaga TextBox utworzenia kontrolki i ErrorProvider w formularzu.

C#
private void textBox1_Validating(object sender, 
                System.ComponentModel.CancelEventArgs e)
{
   string errorMsg;
   if(!ValidEmailAddress(textBox1.Text, out errorMsg))
   {
      // Cancel the event and select the text to be corrected by the user.
      e.Cancel = true;
      textBox1.Select(0, textBox1.Text.Length);

      // Set the ErrorProvider error with the text to display. 
      this.errorProvider1.SetError(textBox1, errorMsg);
   }
}

private void textBox1_Validated(object sender, System.EventArgs e)
{
   // If all conditions have been met, clear the ErrorProvider of errors.
   errorProvider1.SetError(textBox1, "");
}
public bool ValidEmailAddress(string emailAddress, out string errorMessage)
{
   // Confirm that the email address string is not empty.
   if(emailAddress.Length == 0)
   {
      errorMessage = "email address is required.";
         return false;
   }

   // Confirm that there is an "@" and a "." in the email address, and in the correct order.
   if(emailAddress.IndexOf("@") > -1)
   {
      if(emailAddress.IndexOf(".", emailAddress.IndexOf("@") ) > emailAddress.IndexOf("@") )
      {
         errorMessage = "";
         return true;
      }
   }
   
   errorMessage = "email address must be valid email address format.\n" +
      "For example 'someone@example.com' ";
      return false;
}

Uwagi

Po zmianie fokusu przy użyciu klawiatury (TAB, SHIFT+TAB itd.), wywołując Select metody lub SelectNextControl , ustawiając ContainerControl.ActiveControl właściwość na bieżący formularz, zdarzenia fokusu występują w następującej kolejności:

  1. Enter

  2. GotFocus

  3. Leave

  4. Validating

  5. Validated

  6. LostFocus

Po zmianie fokusu za pomocą myszy lub wywołania Focus metody zdarzenia fokusu występują w następującej kolejności:

  1. Enter

  2. GotFocus

  3. LostFocus

  4. Leave

  5. Validating

  6. Validated

Jeśli właściwość jest ustawiona CausesValidation na false, Validating zdarzenia i Validated są pomijane.

Cancel Jeśli właściwość CancelEventArgs obiektu jest ustawiona na true w delegatu Validating zdarzenia, wszystkie zdarzenia, które zwykle występują po wystąpieniu Validating zdarzenia, zostaną pominięte.

Przestroga

Nie należy próbować ustawiać fokusu Enterz poziomu programów obsługi zdarzeń , , GotFocusLostFocusLeave, Validatinglub .Validated Może to spowodować, że aplikacja lub system operacyjny przestaną odpowiadać. Aby uzyskać więcej informacji, zobacz temat WM_KILLFOCUS i sekcję "Zakleszczenia komunikatów" w temacie About Messages and Message Queues (Informacje o komunikatach i kolejkach komunikatów ).

Aby uzyskać więcej informacji na temat obsługi zdarzeń, zobacz Obsługa i podnoszenie zdarzeń.

Dotyczy

Produkt Wersje
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

Zobacz też