RichTextBlock.SelectionChanged Kejadian
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Terjadi ketika pilihan teks telah berubah.
// 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"/>