views:

3841

answers:

2

Hi,

Can we make textbox to autocomplete in WPF?

I found a sample where a combox box is used and the traingle is removed by editing style template.

Do we better solution for autocomplete textbox?

Thanks in advance

Sharath

+4  A: 

You can find here WPF AutoCompleteBox a good WPF AutoCompleteBox.

This article demos how to create a textbox which can auto-suggest items at runtime based on input, in this case, disk drive folders. WPF AutoComplete Folder TextBox

Please take y look at this nice Reusable WPF Autocomplete TextBox, it was for me very usable.

Shurup