Wednesday, November 02, 2011

Using Marketplace on WP7.5 Mango Emulator

http://msdn.microsoft.com/en-us/library/hh394015.aspx

1. Add the following statement to your code.
using Microsoft.Phone.Tasks;
 
2. Add the following code to your application wherever you need it, such as in a button click event.
MarketplaceHubTask marketplaceHubTask = new MarketplaceHubTask();

marketplaceHubTask.ContentType = MarketplaceContentType.Music;

marketplaceHubTask.Show();
 

No comments:

Post a Comment