Question

I'm a new developer and I want to know a good way to create an app rate reminder to my WP app. The reminder should stop remind if the users clicks "okay" or checks the box "don't show this again"

I've searched a bit and found the Telerik plugins, but, they cost?

Is there any other easy code to implement instead?

Was it helpful?

Solution

You can show simple MessageBox (OK, Cancel) and if user clicked OK - show MarketplaceReviewTask. For example:

        if (MessageBox.Show("Rate this app?", "Some title", MessageBoxButton.OKCancel) == MessageBoxResult.OK)
        {
            var a = new MarketplaceReviewTask();
            a.Show();
        }

Also check this article.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top