문제

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?

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top