TextBoxBase.SelectionChanged イベント

定義

テキスト選択が変更されたときに発生します。

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

イベントの種類

次の例では、コードを使用してイベントを処理する SelectionChanged 方法を示します。

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

注釈

ルーティングされたイベント情報

識別子フィールド SelectionChangedEvent
ルーティング戦略 バブル
代理人 RoutedEventHandler

適用対象