我正在尝试使用以下代码行使用C#代码从列表框中删除项目:
search_history.Items.RemoveAt(selected);
但是我收到以下消息:只读集合不支持操作。
除了重置列表框并重新输入项目之外,此问题的解决方法是什么?
答案 0 :(得分:2)
您应该通过设置serach_history.ItemsSource = myObservableCollection
ObservableCollection<T>
然后你可以执行myObservableCollection.Remove(search_history.SelectedItem)
,该项目将从集合中删除,UI将相应更新。
通常,您应始终使用Data Bindings,而不是直接将项目添加到集合中。
答案 1 :(得分:0)
search_history.Items.Remove(search_history.SelectedItem);
答案 2 :(得分:0)
itemsource的项应该实现INotifyCollectionChanged接口。为简化问题,您可以使用ObservableCollection&lt; T>而不是列表&lt; T>。 然后使用下面显示的代码将很好地工作:
(yourlistbox.ItemsSource as ObservableCollection<T>).RemoveAt(selected);
希望有所帮助。