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开发者_JS百科 from my app.
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();
精彩评论