共用方式為


ContactPanelLaunchFullAppRequestedEventArgs 類別

定義

提供 LaunchFullAppRequested 事件的事件資訊。

public ref class ContactPanelLaunchFullAppRequestedEventArgs sealed
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 262144)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
class ContactPanelLaunchFullAppRequestedEventArgs final
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 262144)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
public sealed class ContactPanelLaunchFullAppRequestedEventArgs
Public NotInheritable Class ContactPanelLaunchFullAppRequestedEventArgs
繼承
Object Platform::Object IInspectable ContactPanelLaunchFullAppRequestedEventArgs
屬性

Windows 需求

裝置系列
Windows 10 Creators Update (已於 10.0.15063.0 引進)
API contract
Windows.Foundation.UniversalApiContract (已於 v4.0 引進)
應用程式功能
contactsSystem

範例

下列範例說明本主題中的備註。

async void OnLaunchFullAppRequested(ContactPanel ContactPanel,
                                    ContactPanelLaunchFullAppRequestedEventArgs e)
{
    if (!e.Handled)
    {
        e.Handled = true;
        if (await TryLaunchFullAppFromCurrentStateAsync())
        {
            // we've successfully started the full version of our app; close the hosted view.
            ContactPanel.ClosePanel();
        }
    }
}

備註

首先,檢查以查看 Handled 屬性為 false 。 然後,將 Handled 屬性設定為 true ,然後啟動您的應用程式。 視您想要提供使用者的體驗類型而定,請考慮關閉連絡人面板,因為它們會直接與應用程式的完整版本互動。

屬性

Handled

取得或設定值,這個值表示是否已經處理 LaunchFullAppRequested 事件。

適用於