5

Simple question how do you do this http://www.silverlightshow.net/Storage/demos/ComboBoxDemo/ComboBoxDemo.html in WPF using c#

hidden
  • 3,216
  • 8
  • 47
  • 69

1 Answers1

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
  • 2
    If 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