Re: Combobox scroll to item
Is this on screen keyboard part of your application? I mean when one of the virtual keyboard buttons is pressed, does the combobox loose focus?
Re: Combobox scroll to item
yes they are part of my app. the combobox doesnt lose focus when the letters are pressed. i was hoping to put it in the keyboard button click event, put an if combobox.isfocused then do the scrolling. but the scrolling is what i dont know how to do. :D thanks.
Re: Combobox scroll to item
If they are part of your app then I'm not sure how the combobox can still have focus when you press a button...
Anyway, it would be quite hard (I think) to actually expand the combobox and just highlight an item in it - however it would be quite easy to make it actually select a value from the combobox based on what they typed. Simply set the SelectedItem property to whatever item matches what they have typed.