简体   繁体   English

WP7链接到购买应用程序/评论

[英]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. 我猜这只是我可以从我的应用程序启动的市场的链接。

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();

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM