is there any way to accomplish this functionality from WinForms in WPF?
ListView.FocusedItem = ListView.Items[itemToFocusIndex]
I\'m trying
ListView items are UIElements, so simply use UIElement.Focus(). e.g., listViewItem.Focus() or button.Focus() and so on.
UIElement.Focus()
listViewItem.Focus()
button.Focus()