TextBoxBase.SelectionChanged Evento

Definición

Se produce cuando la selección de texto ha cambiado.

public:
 event System::Windows::RoutedEventHandler ^ SelectionChanged;
public event System.Windows.RoutedEventHandler SelectionChanged;
member this.SelectionChanged : System.Windows.RoutedEventHandler 
Public Custom Event SelectionChanged As RoutedEventHandler 

Tipo de evento

Ejemplos

En el ejemplo siguiente se muestra cómo controlar el SelectionChanged evento mediante código.

private void selectChanged(object sender, RoutedEventArgs e)
{
    myTextBox.AppendText("Selection Changed event in myTextBox2 has just occurred.");
}
Private Sub selectChanged(ByVal sender As Object, ByVal e As RoutedEventArgs)
    myTextBox.AppendText("Selection Changed event in myTextBox2 has just occurred.")
End Sub

Comentarios

Información del evento enrutado

Elemento Value
Campo identificador SelectionChangedEvent
Estrategia de enrutamiento Bubbling
Delegado RoutedEventHandler

Se aplica a