Reputation: 3236
Simple question how do you do this http://www.silverlightshow.net/Storage/demos/ComboBoxDemo/ComboBoxDemo.html in WPF using c#
Upvotes: 5
Views: 8776
Reputation: 1110
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.
Upvotes: 8