RichEditBox.TextChanged É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 le contenu change dans RichEditBox.
// Register
event_token TextChanged(RoutedEventHandler const& handler) const;
// Revoke with event_token
void TextChanged(event_token const* cookie) const;
// Revoke with event_revoker
RichEditBox::TextChanged_revoker TextChanged(auto_revoke_t, RoutedEventHandler const& handler) const;
public event RoutedEventHandler TextChanged;
function onTextChanged(eventArgs) { /* Your code */ }
richEditBox.addEventListener("textchanged", onTextChanged);
richEditBox.removeEventListener("textchanged", onTextChanged);
- or -
richEditBox.ontextchanged = onTextChanged;
Public Custom Event TextChanged As RoutedEventHandler
<RichEditBox TextChanged="eventhandler"/>