如何使用我的所有应用程序打开Windows应用商店

时间:2015-04-03 13:44:05

标签: c# windows windows-8 windows-store-apps

我想在我的应用中添加一个菜单,即“更多应用”。在那个菜单中,我想用我的所有应用程序打开商店。怎么做?

[基本上我的应用程序在Windows 8.1中]

2 个答案:

答案 0 :(得分: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"));
}

答案 1 :(得分:1)

在新的Windows 8.1更新中,Windows应用商店应用的包名称已更改为ms-windows-store,因此,要获取任何发布商的列表,我们必须使用以下代码。

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