I use two ListBox controls in my WPF window that are identical (identical = ItemSource both ListBox are the same, and therefore they look the same), and in select mode both ListBoxes are set to Multiple.
Lets call ListBoxes LB1 and LB2 for now, when I click an item in LB1 , I want the same item in LB2 be obtained automatically, i.e. if I select 3 elements in LB1 using either Shift + Click or Ctrl + Click , the same elements in LB2 will be selected.
Dug Listbox properties like SelectedItems , SelectedIndex , etc., but no luck.
c # wpf listbox selection
Anand shah
source share