I have a WPF ListView control, ItemsSource is set to an ICollectionView created this way:
var collectionView = System.Windows.Data.CollectionViewSource.Ge
Selecting an item programmatically does not give it keyboard focus. You have to do that explcitly... ((Control)listView1.SelectedItem).Focus()
((Control)listView1.SelectedItem).Focus()