I have a data-bound ListBox with an ItemTemplate which i want to enable keyboard navigation on.
If i didn't use an item template and just used the DisplayMemberPath then the list would be navigable with the keybaord. Pressing 'G' for example, would set the selected item to the first listitem beginning with G. Using an item template obviously makes that more difficult since there are zero or more textual candidates for such navigation in the template.
My question is how can i either mark an element as the navigation source or mock this effect using other methods?