windows phone 7 - I want open marketplace with specific app after clicking button -
i want open marketplace specific app after clicking button, , can't find solution that. help?
try using marketdetailtask
class in button's "tap" event handler. insert id of app want display below.
here's example how:
using microsoft.phone.tasks; marketplacedetailtask marketplacedetailtask = new marketplacedetailtask(); marketplacedetailtask.contentidentifier = "app-id-goes-here"; marketplacedetailtask.contenttype = marketplacecontenttype.applications; marketplacedetailtask.show();
Comments
Post a Comment