AutoCompleteBox not found in wpf toolkit using visual studio 2012

Viewed 14778

This is really a wanted feature, AutoCompleteBox (not AutoCompleteComboBox apparently). However, visual studio 2012 cannot find the AutoCompleteBox control. But I have not tried in earlier version of vs, so it may not be a version matter.

I installed wpf toolkit, added those extensions to my WPF project:

  • WPF Toolkit
  • WPF Toolkit Design
  • WPF Toolkit Input Design
  • WPF Toolkit Input Visual Studio Design
  • WPF Toolkit Layout
  • WPF Toolkit Layout Visual Studio Design
  • WPF Toolkit Visual Studio Design.

Looks almost like virii to me. Every permutation of words are used... Well well in my WPF project, I added

xmlns:toolkit="http://schemas.microsoft.com/wpf/2008/toolkit"

to a window and tried to also add a auto complete box like this:

<toolkit:AutoCompleteBox />

but AutoCompleteBox does not seem to exist, the first component that is listed when I have typed

<toolkit:

is ButtonBaseBehavior.

2 Answers
Related