Ethan
Ethan

Reputation: 178

Share an App in Windows Phone 8

I created an App for windows phone. I want to include the feature of Native share option in Windows Phone 8 (while press and holding an app. it shows 1.Pin to Start 2. Rate&review 3. Uninstall and i want to include Share option.)

Is that anyone tell me how to do this?

Upvotes: 1

Views: 240

Answers (3)

SaravanaKumar
SaravanaKumar

Reputation: 747

 var marketplaceDetailTask = new MarketplaceDetailTask
            {
                ContentIdentifier = "App ID",  
                ContentType = MarketplaceContentType.Applications
            };

        marketplaceDetailTask.Show();

Try this Link.

Upvotes: 1

Arslan Pervaiz
Arslan Pervaiz

Reputation: 1633

Not Possible. There is no Such Exposed API/Method That Can Do For You.

Upvotes: 1

Pavan
Pavan

Reputation: 533

As far as I know, it is Not possible to add new item in system context menu.

Upvotes: 2

Related Questions