标签: c# wpf datagrid itemssource
我无法从DataGrid删除所选行。到目前为止,我已经编写了这段代码,它给了我这个错误。
DataGrid
使用ItemsSource时,操作无效。使用ItemsControl.ItemsSource访问和修改元素。
DataRowView rowSelected = dataGrid1.SelectedItem as DataRowView; dataGrid1.Items.Remove(rowSelected);
答案 0 :(得分:0)
从数据源中删除行并根据需要刷新视图。