【发布时间】:2016-05-14 17:38:27
【问题描述】:
Windows 8.1 的承诺之一是 Windows Store Apps 的多个实例的可能性。
但我不知道如何激活它。
我找到了应用清单的元素
http://msdn.microsoft.com/en-us/library/windows/apps/dn423281.aspx
但我不知道该添加什么??价值观:
<Package xmlns="http://schemas.microsoft.com/appx/2010/manifest" xmlns:m2="http://schemas.microsoft.com/appx/2013/manifest">
<Extensions>
<Extension Category="windows.activatableClass.outOfProcessServer">
<OutOfProcessServer ServerName="??">
<Path>??</Path>
<Instancing>multipleInstances</Instancing>
<ActivatableClass ActivatableClassId="MyApp.App"/>
</OutOfProcessServer>
</Extension>
</Extensions>
</Package>
您能帮我激活我的应用程序的多个实例吗?
非常感谢!
【问题讨论】:
标签: manifest windows-8.1 multiple-instances windows-store