Is it possible to programatically set the values of a silverlight list box when the selection mode is "multiple"? The "SelectedItems" property is not settable, and "SelectedIndex" only works when the selection mode is "single".
A:
Add items to SelectedItems collection:
myListBox.SelectedItems.Clear();
foreach(var item in selection)
myListBox.SelectedItems.Add(item);
STO
2010-07-12 20:07:06