Control.Enter Evento

Definizione

Si verifica quando si entra nell'area del controllo.

public:
 event EventHandler ^ Enter;
public event EventHandler Enter;
public event EventHandler? Enter;
member this.Enter : EventHandler 
Public Custom Event Enter As EventHandler 

Tipo evento

Esempio

Nell'esempio di codice seguente viene usato l'evento Enter per modificare i colori di primo piano e sfondo di un TextBox oggetto in condizioni specifiche.

private:
   void textBox1_Enter( Object^ /*sender*/, System::EventArgs^ /*e*/ )
   {
      // If the TextBox contains text, change its foreground and background colors.
      if ( textBox1->Text != String::Empty )
      {
         textBox1->ForeColor = Color::Red;
         textBox1->BackColor = Color::Black;

         // Move the selection pointer to the end of the text of the control.
         textBox1->Select(textBox1->Text->Length,0);
      }
   }

   void textBox1_Leave( Object^ /*sender*/, System::EventArgs^ /*e*/ )
   {
      // Reset the colors and selection of the TextBox after focus is lost.
      textBox1->ForeColor = Color::Black;
      textBox1->BackColor = Color::White;
      textBox1->Select(0,0);
   }
private void textBox1_Enter(object sender, System.EventArgs e)
{
    // If the TextBox contains text, change its foreground and background colors.
    if (!string.IsNullOrEmpty(textBox1.Text))
    {
        textBox1.ForeColor = Color.Red;
        textBox1.BackColor = Color.Black;
        // Move the selection pointer to the end of the text of the control.
        textBox1.Select(textBox1.Text.Length, 0);
    }
}

private void textBox1_Leave(object sender, System.EventArgs e)
{
    // Reset the colors and selection of the TextBox after focus is lost.
    textBox1.ForeColor = Color.Black;
    textBox1.BackColor = Color.White;
    textBox1.Select(0,0);
}
    Private Sub textBox1_Enter(sender As Object, e As System.EventArgs) Handles textBox1.Enter
        ' If the TextBox contains text, change its foreground and background colors.
        If textBox1.Text <> [String].Empty Then
            textBox1.ForeColor = Color.Red
            textBox1.BackColor = Color.Black
            ' Move the selection pointer to the end of the text of the control.
            textBox1.Select(textBox1.Text.Length, 0)
        End If
    End Sub
   
   
    Private Sub textBox1_Leave(sender As Object, e As System.EventArgs) Handles textBox1.Leave
        ' Reset the colors and selection of the TextBox after focus is lost.
        textBox1.ForeColor = Color.Black
        textBox1.BackColor = Color.White
        textBox1.Select(0, 0)
    End Sub
End Class

Commenti

Quando si modifica lo stato attivo usando la tastiera (TAB, MAIUSC+TAB e così via), chiamando i Select metodi o SelectNextControl impostando la ContainerControl.ActiveControl proprietà sul modulo corrente, gli eventi di stato attivo si verificano nell'ordine seguente:

  1. Enter

  2. GotFocus

  3. Leave

  4. Validating

  5. Validated

  6. LostFocus

Quando si modifica lo stato attivo usando il mouse o chiamando il Focus metodo, gli eventi di stato attivo si verificano nell'ordine seguente:

  1. Enter

  2. GotFocus

  3. LostFocus

  4. Leave

  5. Validating

  6. Validated

Se la CausesValidation proprietà è impostata su false, gli Validating eventi e Validated vengono eliminati.

Nota

Gli Enter eventi e Leave vengono eliminati dalla Form classe . Gli eventi equivalenti nella Form classe sono gli Activated eventi e Deactivate . Gli Enter eventi e Leave sono gerarchici e si incatenano verso l'alto e verso il basso fino a quando non viene raggiunto il controllo appropriato. Si supponga, ad esempio, di avere un Form controllo con due GroupBox controlli e ogni GroupBox controllo abbia un TextBox controllo. Quando il caret viene spostato da uno TextBox all'altro, l'evento Leave viene generato per e GroupBoxe e viene generato l'evento Enter per TextBox l'altro GroupBox e TextBox.

Attenzione

Non tentare di impostare lo stato attivo dall'interno di Enter, GotFocus, LostFocusLeave, , Validatingo Validated gestori eventi. In questo modo, l'applicazione o il sistema operativo non rispondono. Per altre informazioni, vedere l'argomento nella sezione "Riferimento all'input WM_KILLFOCUS da tastiera" e nella sezione "Message Deadlocks" dell'argomento Informazioni su messaggi e code di messaggi .

Per ulteriori informazioni sulla gestione degli eventi, consultare gestione e generazione di eventi.

Si applica a

Vedi anche