In WPF, I\'d like to set the selected indexes of a System.Windows.Controls.ListBox
I best way I\'ve found so far is to remove all the items from the control, insert
how to programmatically select multiple items in listbox in wpf
foreach (var boundObject in objectsBoundToListBox) { ListBox.SelectedItems.Add(boundObject); }