C# WPF: Combobox isn't jumping down the list as I type when I use a multiconvert on it.

Posted by michael paul on Stack Overflow See other posts from Stack Overflow or by michael paul
Published on 2011-01-18T03:46:35Z Indexed on 2011/01/18 3:53 UTC
Read the original article Hit count: 297

Basically, I have a combobox that is built by doing multibinding (multiconverter) for the memberdisplaypath. The problem is if the combobox is selected and I start typing, it doesn't jump down the list. Doesn't it go by what's displayed in the combobox for typing?

That is, if the combobox is setup like so:

//value/display (please disregard how weird the numbering is...)
//ref - the value is built upon an observablecollection of a class.
ref / ""
ref  / "10 - Very much agree."
ref  / "15 - Somewhat agree."
ref / "19 - No weight."
ref / "23 - Somwhat disagree."
ref / "33 - Very much disagree."

If the user presses the "1" key it should jump to "10 - Very much agree." But, instead it just sits there...

© Stack Overflow or respective owner

Related posts about c#

Related posts about wpf