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,则应用将以默认状态启动。

适用于