2013-01-12 59 views
1

在Windows Phone上,有一个市场审查任务。从Win RT/Windows 8应用程序启动Windows应用商店清单

是否有任何方式来实现WinRT应用程序中的等效功能?

我意识到Charms栏中有“费率和审查”按钮,但是,这不是我所需要的,因为我想在应用程序内部集成一个按钮来启动审阅UI。

这可能看起来微不足道,但是,这是最重要的要求之一!

这不是is there an equivalent of wp7's marketplacereviewtask for windows 8/winrt/metro style?的重复,因为提问者对Charms栏方法感到满意。

感谢

回答

3

这可以在C#这样的方式进行:

Windows.System.Launcher.LaunchUriAsync(new Uri("ms-windows-store:REVIEW?PFN=PACKAGENAME")); 

其中包名称是与你的,它可以在Package.appxmanifest包装标签下找到所取代。

+0

我也有一个更详细的博文,以及如何找到您的应用程序ID:http://www.sharpgis.net/post/2012/09/11/Linking-to-Your-Windows-Store-App.aspx – dotMorten

+1

程序地获取名称pakage - https://andrearegoli.wordpress.com/2014/01/17/rate-and-review-winrt-app/ – FetFrumos

相关问题