Simple question how do you do this http://www.silverlightshow.net/Storage/demos/ComboBoxDemo/ComboBoxDemo.html in WPF using c#
Asked
Active
Viewed 8,141 times
1 Answers
8
There's a property in WPF ComboBoxes called IsEditable
, if you enable this, it effectively becomes a TextBox with the dropdown of a normal ComboBox. I think this is what you're looking for.

Lyise
- 1,110
- 2
- 12
- 20
-
2If you are using data binding, there are a few more steps. See this answer for more details. http://stackoverflow.com/questions/3743269/editable-combobox-with-binding-to-value-not-in-list – Prof Von Lemongargle Feb 07 '14 at 00:03