Bagikan melalui


ContactPanel.LaunchFullAppRequested Kejadian

Definisi

Terjadi ketika pengguna mengklik tombol Luncurkan Aplikasi Penuh di Panel Kontak.

// Register
event_token LaunchFullAppRequested(TypedEventHandler<ContactPanel, ContactPanelLaunchFullAppRequestedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
ContactPanel::LaunchFullAppRequested_revoker LaunchFullAppRequested(auto_revoke_t, TypedEventHandler<ContactPanel, ContactPanelLaunchFullAppRequestedEventArgs const&> const& handler) const;
public event TypedEventHandler<ContactPanel,ContactPanelLaunchFullAppRequestedEventArgs> LaunchFullAppRequested;
function onLaunchFullAppRequested(eventArgs) { /* Your code */ }
contactPanel.addEventListener("launchfullapprequested", onLaunchFullAppRequested);
contactPanel.removeEventListener("launchfullapprequested", onLaunchFullAppRequested);
- or -
contactPanel.onlaunchfullapprequested = onLaunchFullAppRequested;
Public Custom Event LaunchFullAppRequested As TypedEventHandler(Of ContactPanel, ContactPanelLaunchFullAppRequestedEventArgs) 

Jenis Acara

Persyaratan Windows

Kemampuan aplikasi
contactsSystem

Keterangan

Tangani acara ini untuk memberi pengguna Anda pengalaman yang lebih lancar. Misalnya, aplikasi Anda dapat menangani peristiwa ini untuk memastikan bahwa aplikasi lengkap terus memutar video yang dimulai pengguna di Panel Kontak, atau membuka pesan yang mulai dibaca pengguna di Panel Kontak.

Jika Anda tidak menangani peristiwa ini, atau jika Anda menangani peristiwa ini, tetapi Anda tidak mengatur properti Ditangani dari properti ContactPanelLaunchFullAppRequestedEventArgs ke true, aplikasi Anda dimulai dalam status defaultnya.

Berlaku untuk