AppInstance.IsCurrentInstance 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
應用程式的目前實例是否為此實例所定義之特定索引鍵的已註冊應用程式實例。
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();
}