我有一个带有绑定对象的ListBox
。 ListBox
每30秒更新一次。
如何在更新后让用户选择ListBoxItem
?我使用ListBox
方法更新Clear()
并再次设置对象。
答案 0 :(得分:0)
嗯......如果你清除它......
object selection = myListBox.SelectedItem;
myListBox.Clear();
myListBox.Items.AddRange(newItems);
if (newItems.Contains(selection))
myListBox.SelectedItem = selection;