我有一张表格可以输入电话号码。
用户应该可以通过单击按钮从联系人列表中选择联系人。当用户选择联系人时,数字应出现在表单的文本框中。
有人可以帮我编码吗... 任何形式的帮助都表示赞赏......
答案 0 :(得分:2)
using Microsoft.Phone.UserData;
你正在寻找什么..
类似的东西:
private void ButtonContacts_Click(object sender, RoutedEventArgs e)
{
Contacts cons = new Contacts();
//Identify the method that runs after the asynchronous search completes.
cons.SearchCompleted += new EventHandler<ContactsSearchEventArgs>(Contacts_SearchCompleted);
//Start the asynchronous search.
cons.SearchAsync(String.Empty, FilterKind.None, "Contacts Test #1");
}
void Contacts_SearchCompleted(object sender, ContactsSearchEventArgs e)
{
//Do something with the results.
MessageBox.Show(e.Results.Count().ToString());
}
关于此的文档非常详细:MSDN