다음을 통해 공유


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 내에서 텍스트 선택에 키보드를 사용하는 경우 사용자는 먼저 Caret 브라우징을 활성화해야 합니다(앱이 포그라운드에 있는 경우 F7 키를 누릅니다).

적용 대상