I need to add an item to the top of the resturned results, of an AutoComplete box. Any ideas?
Here is what I was doing, but it seems like my results are being igorned.
Any ideas?
<sdk:AutoCompleteBox x:Name="txtContacts" SelectionChanged="txtContacts_SelectionChanged" ValueMemberBinding="{Binding Converter={StaticResource cpConvert}}" Populated="txtContacts_Populated" Populating="txtContacts_Populating"
>
</sdk:AutoCompleteBox>
private void txtContacts_Populated(object sender, PopulatedEventArgs e)
{
ObservableContactPersonCollection filteredContacts = new ObservableContactPersonCollection();
filteredContacts.Add(new ContactPerson("[Add New]", string.Empty));
foreach (ContactPerson cp in e.Data)
{
filteredContacts.Add(cp);
}
txtContacts.ItemsSource = filteredContacts;
}
Thanks!