I have written a small implementation to filter a listbox based on keyboard input. For an example if the listbox has values "Peter", "Ann" and "Andrew", typing character "A" will filter the list down to "Ann" and "Andrew". I have used the ICollectionView.Filter approach for filtering. However, now I need to highlight the matching characters within each item in the listbox. Is there a way of achieving this?
Thanks,
- D