Silverlight Editable Combo Box

I want to use comobox, which can be edited in my silverlight project, but silverlight does not provide such control. If anyone knows how to create a custom editable combobox in silvelight 4.0, then please help me.

Editable combobox means:

  • A companion list containing a list of options.
  • User can enter a value.
  • Filtration.
+3
source share
2 answers

Looks like you're looking for an AutoCompleteBox .

  • Allows the user to enter a value
  • Maybe just a dropdown like combox
  • The resulting partial value can be used to filter the selection using StartsWith or Contains mode.
  • ,

SDK System.Windows.Controls.Input.dll. .

+4

All Articles