Why does the People app show no contacts / doesn't allow me to pick contacts?
问题 I'm trying to allow the user to select a contact from the People app this way: private async Task<System.Collections.Generic.KeyValuePair<string, string>> SelectAContactForASlot() { KeyValuePair<string, string> kvp; // = new KeyValuePair<string, string>(); var contactPicker = new Windows.ApplicationModel.Contacts.ContactPicker(); contactPicker.CommitButtonText = "Select"; var contact = await contactPicker.PickSingleContactAsync(); if (contact != null) { kvp = new KeyValuePair<string, string>