Reputation: 33
I want to open the default windows phone contact's profile out of my own app. I use the following code to receive all contacts:
Contacts contacts = new Contacts();
contacts.SearchCompleted += HandleContactsSearchCompleted;
contacts.SearchAsync(string.Empty, FilterKind.None, null);
The HandleContactsSearchCompleted
method iterates over all contacts, performs some filtering and displays them.
On click on a contact (instance of Contact
from the list of contacts received through the SeachCompleted
event) I want to open the standard profile which I also see when I click on a contact in my people hub.
Is there a special Uri
to use with the NavigationService.Navigate
method or a particular task for that?
Thanks in advance!
Upvotes: 2
Views: 156
Reputation: 7243
The current version of the Windows Phone SDK does not provide a method for showing the contact card of an existing contact in your address book.
Upvotes: 1