1

ListBox有一些绑定的对象。每ListBox30 秒更新一次。更新后如何保持用户选择ListBoxItem?我ListBox使用该Clear()方法更新并再次设置对象。

4

1 回答 1

0

嗯...如果你清除它...

object selection = myListBox.SelectedItem;
myListBox.Clear();
myListBox.Items.AddRange(newItems);
if (newItems.Contains(selection))
    myListBox.SelectedItem = selection;
于 2012-12-02T13:31:21.563 回答