ContactPanel.LaunchFullAppRequested イベント

定義

ユーザーが連絡先パネルの [ 完全なアプリの起動 ] ボタンをクリックしたときに発生します。

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

イベントの種類

Windows の要件

アプリの機能
contactsSystem

注釈

このイベントを処理して、ユーザーにスムーズなエクスペリエンスを提供します。 たとえば、アプリでこのイベントを処理して、ユーザーが連絡先パネルで開始するビデオを完全なアプリで引き続き再生したり、ユーザーが連絡先パネルで読み始めたメッセージを開いたりできます。

このイベントを処理しない場合、またはこのイベントを処理するが、ContactPanelLaunchFullAppRequestedEventArgs プロパティの Handled プロパティを true に設定しない場合、アプリは既定の状態で起動します。

適用対象