nullable
nullable

Reputation: 2581

WP7 Link to Buy App/Reviews

I have seen in some applications they link directly to the Review page of their application. It also states here that developers should "Provide a way for users to buy your trial application before the end-of-trial."

Does anyone have any information how I can do either of these? I'm guessing it's just a link to the market place I can launch from my app.

Upvotes: 8

Views: 1943

Answers (1)

csharpwinphonexaml
csharpwinphonexaml

Reputation: 3683

You answered yourself you just launch your app page in the marketplace.

If you don't know how to do that here's an example:

 MarketplaceDetailTask marketplaceDetailTask = new MarketplaceDetailTask();

 marketplaceDetailTask.ContentIdentifier = yourappidonthestore;
 marketplaceDetailTask.ContentType = MarketplaceContentType.Applications;

 marketplaceDetailTask.Show();

Upvotes: 1

Related Questions