Compartir a través de


ShareWindowCommandSource.CommandInvoked Evento

Definición

Un evento generado por el Shell de Windows para dar a la aplicación de comunicaciones una oportunidad para iniciar o dejar de compartir realmente una ventana determinada.

// Register
event_token CommandInvoked(TypedEventHandler<ShareWindowCommandSource, ShareWindowCommandEventArgs const&> const& handler) const;

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

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

Tipo de evento

Se aplica a

Consulte también