Compartilhar via


ContentLink.Invoked Evento

Definição

Ocorre quando a interação do usuário ativa o link.

// Register
event_token Invoked(TypedEventHandler<ContentLink, ContentLinkInvokedEventArgs const&> const& handler) const;

// Revoke with event_token
void Invoked(event_token const* cookie) const;

// Revoke with event_revoker
ContentLink::Invoked_revoker Invoked(auto_revoke_t, TypedEventHandler<ContentLink, ContentLinkInvokedEventArgs const&> const& handler) const;
public event TypedEventHandler<ContentLink,ContentLinkInvokedEventArgs> Invoked;
function onInvoked(eventArgs) { /* Your code */ }
contentLink.addEventListener("invoked", onInvoked);
contentLink.removeEventListener("invoked", onInvoked);
- or -
contentLink.oninvoked = onInvoked;
Public Custom Event Invoked As TypedEventHandler(Of ContentLink, ContentLinkInvokedEventArgs) 

Tipo de evento

Comentários

Importante

Essa API dá suporte a links de conteúdo. Os recursos do Windows que habilitam links de conteúdo não estão disponíveis em versões do Windows posteriores ao Windows 10 versão 1903. Os links de conteúdo para controles de texto XAML não funcionarão nas versões do Windows posteriores à 1903.

Aplica-se a