Condividi tramite


PreviewTeamView.CommandInvoked Evento

Definizione

L'utente ha richiamato un'interfaccia utente o un tasto di scelta rapida che non fa parte dell'app, ma deve controllare la chiamata.

// Register
event_token CommandInvoked(TypedEventHandler<PreviewTeamView, PreviewTeamCommandInvokedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
PreviewTeamView::CommandInvoked_revoker CommandInvoked(auto_revoke_t, TypedEventHandler<PreviewTeamView, PreviewTeamCommandInvokedEventArgs const&> const& handler) const;
public event TypedEventHandler<PreviewTeamView,PreviewTeamCommandInvokedEventArgs> CommandInvoked;
function onCommandInvoked(eventArgs) { /* Your code */ }
previewTeamView.addEventListener("commandinvoked", onCommandInvoked);
previewTeamView.removeEventListener("commandinvoked", onCommandInvoked);
- or -
previewTeamView.oncommandinvoked = onCommandInvoked;
Public Custom Event CommandInvoked As TypedEventHandler(Of PreviewTeamView, PreviewTeamCommandInvokedEventArgs) 

Tipo evento

Si applica a