Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/windows/14.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# 如何使用“我的所有应用”打开Windows应用商店_C#_Windows_Windows 8_Windows Store Apps - Fatal编程技术网

C# 如何使用“我的所有应用”打开Windows应用商店

C# 如何使用“我的所有应用”打开Windows应用商店,c#,windows,windows-8,windows-store-apps,C#,Windows,Windows 8,Windows Store Apps,我想在我的应用程序中添加一个菜单,即“更多应用程序”。在该菜单中,我想用我的所有应用打开商店。怎么做 [基本上我的应用程序在Windows 8.1中]在新的Windows 8.1更新中,Windows应用商店应用程序的软件包名称更改为ms Windows应用商店,因此,要获取任何发布者的列表,我们必须使用以下代码 // Function to Search for an App by publisher in Windows Phone Store using URI Scheme in Win

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


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

在新的Windows 8.1更新中,Windows应用商店应用程序的软件包名称更改为
ms Windows应用商店
,因此,要获取任何发布者的列表,我们必须使用以下代码

// 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"));
}
private async System.Threading.Tasks.Task SearchForAnApp()
{
 await Launcher.LaunchUriAsync(new Uri("ms-windows-store:publisher=company-name"));
}

在堆栈溢出问题上,最好添加一个解释,说明解决方案应该工作的原因。欲了解更多信息,请阅读。