Bagikan melalui


PreviewTeamView.CommandInvoked Kejadian

Definisi

Pengguna telah memanggil beberapa UI atau hotkey yang bukan bagian dari aplikasi tetapi harus mengontrol panggilan.

// 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) 

Jenis Acara

Berlaku untuk