在 Windows 8.1 应用程序中,我们可以使用 ms-windows-store 协议链接到存储应用程序。
var storeURI = new Uri("ms-windows-store:PDP?PFN=<package family name>");
await Windows.System.Launcher.LaunchUriAsync(storeURI);
Windows Phone 8.1 中是否有类似的方法?我不想链接到商店中应用程序的网页 ( http://windowsphone.com/s?appId=appGUID ),然后在商店中打开应用程序。我想直接在商店里打开应用程序。