2015-04-03 109 views

回答

1

在新的Windows 8.1更新的Windows Store应用的包名称更改为ms-windows-store所以,让我们必须使用任何发行商的列表下面的代码。

private async System.Threading.Tasks.Task SearchForAnApp() 
{ 
await Launcher.LaunchUriAsync(new Uri("ms-windows-store:publisher=company-name")); 
} 
+1

Stack Overflow的良好做法是为解释为什么您的解决方案应该起作用。有关更多信息,请阅读[如何回答](http://stackoverflow.com/help/how-to-answer)。 – 2016-12-29 22:14:22

1
// Function to Search for an App by publisher in Windows Phone Store using URI Scheme in Windows Phone 8 using C#. 

private async System.Threading.Tasks.Task SearchForAnApp() 
{ 
    await Launcher.LaunchUriAsync(new Uri("zune:search?publisher=Abundantcode")); 
} 
相关问题