Windows Phone 8.x Silverlight 方法
MarketplaceReviewTask task = new MarketplaceReviewTask();
task.Show();
Windows 8.x / Windows Phone 8.1 Windows Runtime 方法
var uri = new Uri(string.Format(@”zune://reviewapp/?appid={0}”, appid));
await Windows.System.Launcher.LaunchUriAsync(uri);
Windows 10 方法
var uri = new Uri(string.Format(@”ms-windows-store://review/?ProductId={0}”, ProductId));
await Windows.System.Launcher.LaunchUriAsync(uri);
应用提交到Windows应用商店后,在应用管理->应用标识中可以找到类似信息
URL的末尾就是对应的appid和win10中的ProductId。
本文详细解析了Windows应用商店中应用提交过程,包括如何通过Silverlight方法、Windows Runtime方法和Windows10方法启动评价页面。通过提供具体的代码示例,如使用MarketplaceReviewTask和Uri启动评价,帮助开发者了解如何引导用户完成评价流程。
1万+

被折叠的 条评论
为什么被折叠?



