? | |||
(4 intermediate revisions by one user not shown) | |||
Line 1: | Line 1: | ||
? | [[Category:Draft]][[Category:Windows Phone 8]][[Category:Windows Phone 7.5]][[Category:Windows Phone]][[Category:Code Examples]] | ? | [[Category:Draft]][[Category:Windows Phone 8]][[Category:Windows Phone 7.5]][[Category:Windows Phone]][[Category:Code Examples]] |
? |
| + | {{Abstract|This demonstrator shows how to integrate rate functionality in your application, using Marketplace Review Task. }} |
? | ? | + | |
? | {{Abstract|This demonstrator shows how to integrate | + | |
? | ? | ||
? | {{ArticleMetaData <!-- v1.3 --> | ? | {{ArticleMetaData <!-- v1.3 --> |
Line 8: | Line 6: | ||
? | |installfile= <!-- Link to installation file (e.g. [[Media:The Installation File.wgt]]) --> | ? | |installfile= <!-- Link to installation file (e.g. [[Media:The Installation File.wgt]]) --> |
? | |devices= Windows Phone Emulator | ? | |devices= Windows Phone Emulator |
? | |sdk= Windows Phone 8.0 SDK, Windows Phone 7.5 SDK | + | |sdk= [http://dev.windowsphone.com/en-us/downloadsdk Windows Phone 8.0 SDK], [http://www.microsoft.com/en-in/download/details.aspx?id=27570 Windows Phone 7.5 SDK] |
? | |platform= | + | |platform= Windows Phone 7.5 and Windows Phone 8 |
? | |dependencies= <!-- Any other/external dependencies e.g.: Google Maps Api v1.0 --> ? | ? | |dependencies= <!-- Any other/external dependencies e.g.: Google Maps Api v1.0 --> ? |
? | |signing=<!-- Special Signing requirements --> | ? | |signing=<!-- Special Signing requirements --> |
Line 21: | Line 19: | ||
? | |update-by= <!-- After significant update: [[User:username]]--> | ? | |update-by= <!-- After significant update: [[User:username]]--> |
? | |update-timestamp= <!-- After significant update: YYYYMMDD --> | ? | |update-timestamp= <!-- After significant update: YYYYMMDD --> |
? | |creationdate= | + | |creationdate= 20130705 |
? | |author= | + | |author= [[User:Pavan.pareta]] |
? | }} | ? | }} |
? | ? | ||
Line 54: | Line 52: | ||
? | ? | ||
? | == References == | ? | == References == |
? |
| + | * [http://msdn.microsoft.com/en-us/library/windowsphone/develop/microsoft.phone.tasks.marketplacereviewtask(v=vs.105).aspx MarketplaceReviewTask Class] |
? |
| + | * [http://msdn.microsoft.com/en-us/library/windowsphone/develop/hh394030(v=vs.105).aspx Marketplace review task for Windows Phone] |
Revision as of 10:04, 5 July 2013
This demonstrator shows how to integrate rate functionality in your application, using Marketplace Review Task.
Article Metadata
Code Example
Tested with
Devices(s): Windows Phone Emulator
Compatibility
Platform(s): Windows Phone 7.5 and Windows Phone 8
Article
Introduction
Rating functionality is very imported for every application; to increase the application popularity as well as increase the application downloads in Windows Store. Marketplace Task is a part of Launchers, which is a managed API for Windows Phone application development. To write reviews of an application it is necessary to login with the Windows Live ID.
Integration
To integrate the Marketplace task reviews launch application in your existing application. Follow the below mentioned steps, in which page you want to integrate in your application. It is very easy to integrate using MarketplaceReviewTask class.
Step:-1 Add the following Namespace
using Microsoft.Phone.Tasks;
Step:-2 Create an object of MarketplaceReviewTask class and call Show method to show the Store client application and displays the review page of your application. In this example I have used a button to show store client application.
private void btnRageMe_Click(object sender, RoutedEventArgs e)
{
MarketplaceReviewTask oRateTask = new MarketplaceReviewTask();
oRateTask.Show();
}
Note: You can open Marketplace Review client application, Sign-in with Windows Live ID and your application must in Windows Store.
Download
Here is a complete source code - File:WmDev RateApp.zip
References
Olympic Schedule 2012 NBC Olympics NBC Olympics schedule 2012 Olympics Chad Everett London Olympics Kristen Stewart Rupert Sanders Photos
No comments:
Post a Comment