Created
August 19, 2014 12:35
-
-
Save ceee/b40df3169435abd40a2c to your computer and use it in GitHub Desktop.
Launch store in WinRT
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// navigate to store (details of app) page | |
await Windows.System.Launcher.LaunchUriAsync(new Uri("ms-windows-store:navigate?appid=" + CurrentApp.AppId)); | |
// navigate to review page | |
await Windows.System.Launcher.LaunchUriAsync(new Uri("ms-windows-store:reviewapp?appid=" + CurrentApp.AppId)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment