Click here to Skip to main content
Licence CPOL
First Posted 31 May 2008
Views 85,767
Downloads 3,504
Bookmarked 65 times

WPF Autocomplete Textbox Control

By thomastn | 31 May 2008
An article showing how to build a WPF autocomplete textbox control with delay input
1 vote, 4.2%
1
4 votes, 16.7%
2
2 votes, 8.3%
3
4 votes, 16.7%
4
13 votes, 54.2%
5
3.88/5 - 24 votes
1 removed
μ 3.94, σa 2.33 [?]

Introduction

This article demonstrates some basic steps on how to build an auto complete textbox custom control with WPF. I have looked at many auto completion textbox solutions, most of them suffered performance issues when filled with large amount of entries. This implementation attempts to mask that problem by not building the suggested list until the user is done typing.

Background

I needed an autocompletion textbox for my application that can search based not just on name but also on keywords. I found the solution posted by pfemiani. I like his idea of searching by keywords but the solution does not work for my WPF application without extensive modification. Then I came across a WPF solution from AskErnest.com using a textbox and combobox controls, so I decided to build my code upon that.

Ernest's suggestion is pretty simple, there are two children in the control, Textbox and Combobox. On the TextBox's TextChanged event, we would populate the list for the combobox using words matching the text in the textbox. On the ComboBox's SelectionChanged event, we set the text in the textbox using the content of the selected item of the Combobox. This works very well except that Ernest is only doing name matching and his blog doesn't provide the complete source code.

Another challenge that I'm facing is performance issue. My autocompletion textbox is backed by several thousand entries from a database, on some keyword I could have over 300 hits. Populating the combobox on every user keystroke feels sluggish. My solution is to start a timer on TextChanged event and populate the combobox list only when the timer expires. I tried this on my large database and it works beautifully. I can type a long name and not feel like I'm on a 286.

Using the Code

To use this custom control in your application, you simply add the following files...

  1. AutoCompleteEntry.cs
  2. AutoCompleteTextBox.xaml
  3. AutoCompleteTextBox.xaml.cs

... to your project. Next, in the XAML file that you would like to use the auto complete textbox custom control, add this line to the header block.

xmlns:local="clr-namespace:WPFAutoCompleteTextbox"

Then in the XAML code, where you want to place the auto complete textbox, add:

<local:AutoCompleteTextBox Height="23" Width="240" x:Name="textBox1" 
    DelayTime="500" Threshold="2"/>

In my example code, the name of the textbox is textBox1. You can get or set the text in the textbox by referring to textBox1.Text. The DelayTime property is the amount of time (in ms) that you want to delay after the user starts typing before populating the list. Leaving the DelayTime unset will default to 0, which is populating immediately after each user keystroke. The Threshold property controls the number of characters threshold, at or over that at we will start suggesting.

In the code behind of my example, I manually populate the search entries with a variety of cars and models.

textBox1.AddItem(new AutoCompleteEntry
    ("Toyota Camry", "Toyota Camry", "camry", "car", "sedan"));
textBox1.AddItem(new AutoCompleteEntry
    ("Toyota Corolla", "Toyota Corolla", "corolla", "car", "compact"));
textBox1.AddItem(new AutoCompleteEntry
    ("Toyota Tundra", "Toyota Tundra", "tundra", "truck"));
// null matching string will default with just the name
textBox1.AddItem(new AutoCompleteEntry("Chevy Impala", null));
textBox1.AddItem(new AutoCompleteEntry
    ("Chevy Tahoe", "Chevy Tahoe", "tahoe", "truck", "SUV"));
textBox1.AddItem(new AutoCompleteEntry
    ("Chevrolet Malibu", "Chevrolet Malibu", "malibu", "car", "sedan"));

If for example, the user types in "car", all the entries with the "car" keyword will be suggested.

I hope you find this solution helpful. If you find any errors or have questions, feel free to contact me.

History

  • 30th May, 2008: First release

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

thomastn



United States United States

Member


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 5 Pinmembershynet10:27 25 Dec '11  
GeneralThanks. An alternative way. Pinmemberpoporopo10:29 15 Jun '11  
GeneralMy vote of 4 Pinmemberlixie132418:02 22 May '11  
GeneralAccept items only from list Pinmemberboki_thegame8:46 26 Mar '11  
GeneralMy vote of 5 Pinmemberairtongomeslima17:46 17 Mar '11  
QuestionHow can i reference a class from the AutoCompleteBox Pinmemberabetterword10:13 7 Jan '11  
GeneralMy vote of 5 Pinmembervegbruiser4:03 27 Oct '10  
Generalone more thing PinmemberdotNiemand1:31 27 May '10  
GeneralSelected Item Event improvement PinmemberdotNiemand1:06 27 May '10  
Generalsmall improvement - down button PinmemberdotNiemand0:49 27 May '10  
GeneralAdding focus after selecting from the combobox. PinmemberBudsy23:27 29 Mar '10  
Questionadditional PinmemberComan Ovidiu2:39 24 Feb '10  
AnswerRe: additional PinmemberBudsy23:36 29 Mar '10  
Question[My vote of 1] Hey - what's this keyboard for? Pinmembertonyt17:24 21 Feb '10  
GeneralIssue with WPF AutoComplete TextBox with Chinese and Japanese inputs Pinmembersandyyyyyyyyyy0:35 19 Nov '09  
GeneralMy vote of 2 Pinmemberrealvasche8:36 23 Oct '09  
Questionchinese IME issue Pinmembernnnnimisha21:17 5 Aug '09  
QuestionHow can I change the Background Color of the AutoComplete TextBox? Pinmembermicrosoft_kc21:59 23 Jun '09  
AnswerRe: How can I change the Background Color of the AutoComplete TextBox? PinmemberTrond Andersen5:08 22 Oct '09  
GeneralNice One Pinmemberkapil bhavsar0:49 8 May '09  
GeneralMy vote of 2 PinmemberRandomEngy8:44 14 Apr '09  
QuestionWait hold on... is your ComboBox hiding behind the text field? PinmemberMember 40300058:41 14 Apr '09  
GeneralThanks!! PinmemberDZaK8314:11 19 Mar '09  
GeneralAnother alternative Pinmembertoidy8:15 30 Sep '08  
Generalkeyboard oriented selection Pinmemberjohn c gibbons6:24 22 Sep '08  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120209.1 | Last Updated 31 May 2008
Article Copyright 2008 by thomastn
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid