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) 。

适用于