Windowsストアアプリで、Windows Storeアプリのレビューページへのリンクを表示させる方法を紹介します。
単純に「ms-windows-storeスキーム」を投げてやれば良いらしいです。
var uri = new Uri("ms-windows-store:REVIEW?PFN=MY_PACKAGE_FAMILY_NAME"); Windows.System.Launcher.LaunchUriAsync(uri);
Windowsストアアプリで、Windows Storeアプリのレビューページへのリンクを表示させる方法を紹介します。
単純に「ms-windows-storeスキーム」を投げてやれば良いらしいです。
var uri = new Uri("ms-windows-store:REVIEW?PFN=MY_PACKAGE_FAMILY_NAME"); Windows.System.Launcher.LaunchUriAsync(uri);