I also have a button on a settings page in my uwp app which launches the store in order to rate the app.
When a user starts this manual process, I'd like to make sure that the user does not get a RateReminder again.
So can I manually set RateReminderResult.Rated to true in the button click handler?
This is my button click current code because I could not find a method to force show the ratereminder:
await Windows.System.Launcher.LaunchUriAsync(new Uri($"ms-windows-store://review/?PFN={Windows.ApplicationModel.Package.Current.Id.FamilyName}"));
I also have a button on a settings page in my uwp app which launches the store in order to rate the app.
When a user starts this manual process, I'd like to make sure that the user does not get a RateReminder again.
So can I manually set
RateReminderResult.Ratedto true in the button click handler?This is my button click current code because I could not find a method to force show the ratereminder: