ShareWindowCommandSource.CommandRequested 事件

定义

Windows Shell 引发的事件,使通信应用有机会支持启动或停止共享特定窗口。

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

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

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

事件类型

适用于

另请参阅