如何使用我的所有应用打开 Windows 应用商店
Posted
技术标签:
【中文标题】如何使用我的所有应用打开 Windows 应用商店【英文标题】:How to Open Windows Store with my all apps 【发布时间】:2015-06-08 14:45:02 【问题描述】:我想在我的应用程序中添加一个菜单,即“更多应用程序”。在那个菜单中,我想用我的所有应用程序打开商店。该怎么做?
[基本上我的应用在 Windows 8.1 中]
【问题讨论】:
【参考方案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"));
【讨论】:
【参考方案2】:在新的 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"));
【讨论】:
在 Stack Overflow 上添加解释为什么您的解决方案应该有效是一种很好的做法。更多信息请阅读How To Answer。以上是关于如何使用我的所有应用打开 Windows 应用商店的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 python 脚本打开 Windows 10 应用程序?