views:

38

answers:

2

It looks like there is an AutoComplete box in Expression Blend 4, but it looks like it doesn't let you use it on a regular WPF application. Can this be true? Is it only available for Silverlight applictions? If so, is there one I can use in a WPF application written for .Net 4?

+1  A: 

Indeed, the AutoCompleteBox is only available in Silverlight... no idea why. However, there are plenty of auto-complete textbox implementations for WPF... See this answer for details :

http://stackoverflow.com/questions/950770/autocomplete-textbox-in-wpf/1762647#1762647

Thomas Levesque
Thanks for your response. At least you have confirmed that it is only available in Silverlight. I wonder if Microsoft have plans to make it available to WPF too.
EasyTimer
+1  A: 

Seems WPF toolkit has an AutoCompleteBox.

Veer
Ah, OK thanks. It seems like I might have to use that one and therefore make my project dependent on .Net 3.5 as well as .Net 4
EasyTimer
3.5 is included in 4 so you're not adding any dependencies by referencing a 3.5 assembly.
John Bowen