Reputation: 1127
I have an app, and I'd like to add a share button to it. Once the button is clicked, I'd like it to open the following window:
Then the user will choose where to share it and it will display the following default message:
"Just found this great app! Find it here:http://www.windowsphone.com/en-us/store/app/amtrak/c8824bb8-3a85-48f7-af54-954bd5673cc6"
Can you please tell me how to do it?
Upvotes: 3
Views: 1554
Reputation: 89285
Maybe you want Task
as in Microsoft.Phone.Tasks namespace. And which Task
to choose is depending on what kind of information you want to share :
how to use ShareMediaTask
how to use ShareLinkTask
how to use ShareStatusTask
Upvotes: 3