Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.