Rate and review mechanism

May 14, 2014
44
0
6
Visit site
first add
Code:
using Windows.ApplicationModel.Store;

then this
Code:
await Windows.System.Launcher.LaunchUriAsync(
                new Uri("ms-windows-store:reviewapp?appid=" + CurrentApp.AppId));
 

harry2345

New member
Sep 2, 2014
74
0
0
Visit site
I mean that you get a popup after you have opened the app for the 5th time, that asks if you want to rate the app and if you press no you can give feedback.
 

mreck

New member
Jun 4, 2012
6
0
0
Visit site
You could write a Method with a counter for that count up to 5 and then display a message dialog. Else you could use ReviewNotifier search for it in NuGet.
 

Jiri Matejka

New member
Aug 29, 2014
28
0
0
Visit site
You needn't to know the URL, just call
MarketplaceReviewTask task = new MarketplaceReviewTask();
task.Show();
This will navigates the user to the Review page.

I am showing this prompt on app start and record the date and time the prompt was displayed to Isolated Storage. Then it is not displayed for specific period of time (let's say a week) not to annoy the user with such prompt on each app start. Once he confirms the prompt he is navigated to the review page using the code above and I also record that he has provided the review not to prompt him at all.

Jiri
 

Members online

Forum statistics

Threads
326,611
Messages
2,248,633
Members
428,522
Latest member
BarkerJarrod