共用方式為


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();
}

適用於