我使用ItemsSource,当我想从列表中删除一个项目时,我收到一个错误.
错误:
只读集合不支持操作.
原文链接:https://www.f2er.com/windows/363478.html错误:
只读集合不支持操作.
MenuItem menuItem = (MenuItem) sender; MessageBox.Show(menuItem.Header.ToString(),"Result",MessageBoxButton.OK); ListBoxItem lb (ListBoxItem)listBoxJournal.ItemContainerGenerator.ContainerFromItem(((MenuItem)sender).DataContext); liste.Remove((Note)lb.Content); listBoxJournal.UpdateLayout(); listBoxJournal.Items.Clear(); listBoxJournal.ItemsSource = liste;
我在行items.clear上得到了错误.
谢谢