Domanda

I am looking out for combination of TextBox & ComboBox in WPF. i.e. user should be able to enter new text values or select one from drop down list.

Is there any pre-existing control for this?

È stato utile?

Soluzione

How about just ComboBox with IsEditable property set to True? :

<ComboBox IsEditable="True"/>

With that user will be able to enter new text values, or select one from drop down list. Or type to search value from drop down list.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top