如何使用Windows 8.1 API在Windows Phone上保存联系人

时间:2014-05-12 21:23:46

标签: c# api windows-phone contact windows-phone-8.1

如何使用Windows 8.1运行时API而不是银光8.1 API将联系人保存到系统电话簿而不是应用程序电话簿?

1 个答案:

答案 0 :(得分:0)

您只能从电话簿中获取/查找联系人。我认为没有API可以在电话簿中保存或创建新联系人。以下是如何在Windows 8.1通用应用程序中获取联系人的示例。

public async void FindContacts(string searchText)
    {
        ContactStore contactStore = await ContactManager.RequestStoreAsync();

        IReadOnlyList<Contact> contacts = null;

        if (String.IsNullOrEmpty(searchText))
        {
            contacts = await contactStore.FindContactsAsync();
        }
        else
        {
            contacts = await contactStore.FindContactsAsync(searchText);
        }

    }