hidden
hidden

Reputation: 3236

How to allow a user to type in a combo box

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

Upvotes: 5

Views: 8776

Answers (1)

Lyise
Lyise

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

Related Questions