在ListBox更新后继续选择

时间:2012-12-02 13:25:08

标签: c# wpf listbox clear

我有一个带有绑定对象的ListBoxListBox每30秒更新一次。 如何在更新后让用户选择ListBoxItem?我使用ListBox方法更新Clear()并再次设置对象。

1 个答案:

答案 0 :(得分:0)

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

object selection = myListBox.SelectedItem;
myListBox.Clear();
myListBox.Items.AddRange(newItems);
if (newItems.Contains(selection))
    myListBox.SelectedItem = selection;