Reputation: 788
i am using Windows.ApplicationModel.Contacts and http://msdn.microsoft.com/en-us/library/windows/apps/windows.applicationmodel.contacts.contact.aspx#properties. my doubt is can i add contact to people hub from my application?,if yes then how.i am working on c#.
Upvotes: 0
Views: 861
Reputation: 26
You cannot directly add contacts to people app.
It has to be added to another store such as live, facebook, exchange, etc since people is a compilation of all these stores.
Upvotes: 1
Reputation: 8852
You can do it using ContactPicker Contract.
Than you can use ContactPickerUI.AddContact to add contact, you cannot add a contact programmatically though.
Contact Picker Sample Application
Upvotes: 0