ShareWindowCommandSource.CommandRequested Kejadian
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Peristiwa yang diangkat oleh Windows Shell untuk memberi aplikasi komunikasi Anda kesempatan untuk mendukung memulai atau berhenti berbagi jendela tertentu.
// 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)