2015-10-26 15 views

答えて

24

APPのパッケージファミリ名を使用して、レートとレビューセクションを起動できます。

await Launcher.LaunchUriAsync(new Uri(string.Format("ms-windows-store:REVIEW?PFN={0}", Windows.ApplicationModel.Package.Current.Id.FamilyName))); 
1

あなたはまだ、その目的のためにLauncherクラスを使用することができます。Windowsストアため

public async Task OpenStore() 
{ 
    const string productId = "YOUR PRODUCT ID"; 
    var uri = new Uri("ms-windows-store://review/?ProductId=" + productId); 
    await Launcher.LaunchUriAsync(uri); 
} 

可能な起動オプションがhere (Launch the Windows Store app)定義されています。

Windows Dev Centerダッシュボードの各アプリの[アプリケーション管理]セクションの[アプリケーションID]ページに、必要な値(商品IDなど)がであることがわかります。

関連する問題