我正在使用 WPF DataGrid
,但无法编辑其中的数据。当我双击一个单元格时,我得到讨论名称中列出的错误:
此视图不允许“编辑项目”。
我该如何克服呢?
谢谢
编辑: 我的学生姓名和他们想说的内容中有两个数据,都是字符串。然后,我将绑定我的实体框架。
下面是我的 selectionchanged 功能
private void ClassDataGrid_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
var selectedStudent = (Class)e.AddedItems[0];
var sayingCollection = selectedStudent.;
sayingCollection.AssociationChanged += ColumnsCollection_Changed;
var sayingViewSource = ((CollectionViewSource)(this.FindResource("StudentsSayingViewSource")));
sayingViewSource.Source = sayingCollection.Where(c => c.Saying.Contains(":"));
}