RichTextBlock.SelectionChanged 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
在文本选择改变时发生。
// Register
event_token SelectionChanged(RoutedEventHandler const& handler) const;
// Revoke with event_token
void SelectionChanged(event_token const* cookie) const;
// Revoke with event_revoker
RichTextBlock::SelectionChanged_revoker SelectionChanged(auto_revoke_t, RoutedEventHandler const& handler) const;
public event RoutedEventHandler SelectionChanged;
function onSelectionChanged(eventArgs) { /* Your code */ }
richTextBlock.addEventListener("selectionchanged", onSelectionChanged);
richTextBlock.removeEventListener("selectionchanged", onSelectionChanged);
- or -
richTextBlock.onselectionchanged = onSelectionChanged;
Public Custom Event SelectionChanged As RoutedEventHandler
<RichTextBlock SelectionChanged="eventhandler"/>