TextBlock.SelectionChanged イベント

定義

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

// Register
event_token SelectionChanged(RoutedEventHandler const& handler) const;

// Revoke with event_token
void SelectionChanged(event_token const* cookie) const;

// Revoke with event_revoker
TextBlock::SelectionChanged_revoker SelectionChanged(auto_revoke_t, RoutedEventHandler const& handler) const;
public event RoutedEventHandler SelectionChanged;
function onSelectionChanged(eventArgs) { /* Your code */ }
textBlock.addEventListener("selectionchanged", onSelectionChanged);
textBlock.removeEventListener("selectionchanged", onSelectionChanged);
- or -
textBlock.onselectionchanged = onSelectionChanged;
Public Custom Event SelectionChanged As RoutedEventHandler 
<TextBlock SelectionChanged="eventhandler"/>

イベントの種類

注釈

重要

TextBlock 内のテキスト選択にキーボードを使用する場合、ユーザーは最初に キャレットブラウズ をアクティブにする必要があります (フォアグラウンドでアプリを使用して、F7 キーを押します)。

適用対象