AppInstance.IsCurrentInstance 属性

定义

应用的当前实例是否是此实例已定义的特定密钥的应用注册实例。

public:
 property bool IsCurrentInstance { bool get(); };
bool IsCurrentInstance();
public bool IsCurrentInstance { get; }
var boolean = appInstance.isCurrentInstance;
Public ReadOnly Property IsCurrentInstance As Boolean

属性值

Boolean

bool

一个布尔值,指示当前应用是否为应用的已注册实例。

示例

在以下示例中,如果找到的实例是当前实例,则会激活该实例。 如果它不是当前实例,则示例将重定向到找到的应用实例。

if (theInstance.IsCurrentInstance)
{
    global::Windows.UI.Xaml.Application.Start((p) => new App(activatedArgs));
}
else
{
    theInstance.RedirectActivationTo();
}

适用于