TextBlock.SelectionChanged Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Se produit lorsque la sélection de texte a été modifiée.
// 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"/>
Type d'événement
Remarques
Important
Si vous utilisez un clavier pour la sélection de texte dans un TextBlock, l’utilisateur doit d’abord activer la navigation caret (avec l’application au premier plan, appuyez sur F7).