C# – Selecting items in a listbox using C#

clistboxselectionwpf

I am using two ListBox controls in my WPF window that are identical (identical = ItemSource of both the ListBox is same and so they look same) and the selection mode on both the ListBoxes is set to Multiple.

Lets call the ListBoxes LB1 and LB2 for the time being, now when I click an item in LB1, I want the same item in LB2 to get selected automatically i.e if I select 3 items in LB1 using either Shift+Click or Ctrl+Click the same items in LB2 get selected.

Have dug the Listbox properties like SelectedItems, SelectedIndex etc but no luck.

Best Answer

Place a SelectionChanged event on your first listbox

LB1.SelectionChanged += LB1_SelectionChanged;

Then implement the SelectionChanged method like so:

void LB1_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
    LB2.SelectedItems.Clear();
    foreach(var selected in LB1.SelectedItems)
    {
        LB2.SelectedItems.Add(selected);
    }
}
Related Topic