繁体   English   中英

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

[英]How to Open Windows Store with my all 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"));
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM