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로 설정하지 않으면 앱이 기본 상태로 시작됩니다.

적용 대상