Reputation: 539
Can i set the link of "rate and review" page of my app ?
Actually i want to give this link in "About" page of my app.
Upvotes: 4
Views: 1201
Reputation: 125660
Use MarketplaceReviewTask
Launcher instead of a link:
using Microsoft.Phone.Tasks;
(...)
MarketplaceReviewTask marketplaceReviewTask = new MarketplaceReviewTask();
marketplaceReviewTask.Show();
It's gonna open Marketplace
app on your application page where user will be able to review your app.
Upvotes: 4