다음을 통해 공유


PreviewTeamView.CommandInvoked 이벤트

정의

사용자가 앱의 일부가 아니지만 호출을 제어해야 하는 일부 UI 또는 바로 가기 키를 호출했습니다.

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

이벤트 유형

적용 대상