RichEditBox.ContentLinkChanged É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 lorsqu’un lien de contenu est ajouté, supprimé ou modifié.
// Register
event_token ContentLinkChanged(TypedEventHandler<RichEditBox, ContentLinkChangedEventArgs const&> const& handler) const;
// Revoke with event_token
void ContentLinkChanged(event_token const* cookie) const;
// Revoke with event_revoker
RichEditBox::ContentLinkChanged_revoker ContentLinkChanged(auto_revoke_t, TypedEventHandler<RichEditBox, ContentLinkChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<RichEditBox,ContentLinkChangedEventArgs> ContentLinkChanged;
function onContentLinkChanged(eventArgs) { /* Your code */ }
richEditBox.addEventListener("contentlinkchanged", onContentLinkChanged);
richEditBox.removeEventListener("contentlinkchanged", onContentLinkChanged);
- or -
richEditBox.oncontentlinkchanged = onContentLinkChanged;
Public Custom Event ContentLinkChanged As TypedEventHandler(Of RichEditBox, ContentLinkChangedEventArgs)
Type d'événement
Configuration requise pour Windows
Famille d’appareils |
Windows 10, version 1803 (introduit dans 10.0.17134.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduit dans v6.0)
|
Remarques
Important
Cette API prend en charge les liens de contenu. Les fonctionnalités Windows qui autorisent les liens de contenu ne sont pas disponibles dans les versions de Windows postérieures à Windows 10 version 1903. Les liens de contenu pour les contrôles de texte XAML ne fonctionnent pas dans les versions de Windows ultérieures à la version 1903.
Cet événement se produit après l’événement TextChanging et avant l’événement TextChanged .