如何打开 Windows Store with my all apps

How to Open Windows Store with my all apps

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

[基本上我的应用是 Windows 8.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"));
}

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

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