Unselect all items in a listbox after initial load
C# WPF (Clear Multiple)
Two more ways from code behind:
DemoListBox.SelectedItems.Clear();
DemoListBox.UnselectAll()
ListBox.ClearSelected()
or
ListBox.SelectedIndex = -1
Of course, they are member methods.