从Win RT / Windows 8应用程序启动Windows应用商店列表

时间:2013-01-12 11:48:56

标签: c# windows-8 windows-runtime winrt-xaml

在Windows Phone上有一个市场审查任务。

是否有任何方式在WinRT应用中实现等效功能?

我意识到Charms栏中有“rate and review”按钮,但是,这不是我需要的,因为我想在应用程序中集成一个按钮来启动评论UI。

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

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

感谢

1 个答案:

答案 0 :(得分:3)

这可以用C#这样做:

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

包装名称将替换为您的包装名称,可在包装标签下的Package.appxmanifest中找到。