提问人:Loyvsc 提问时间:5/19/2023 最后编辑:Loyvsc 更新时间:5/19/2023 访问量:50
WPF - GridView OnEditEnded 事件
WPF - GridView OnEditEnded event
问:
我使用 Entity Framework 7 和 gridview 在 gridview 中查看和编辑数据。编辑单元格后,我需要保存新值,但是在更改源数据(ItemsSource属性)之前调用了CellEditEnding事件,并且数据库没有更新。
事件侦听器代码:
private void DataGrid_CellEditEnding(object sender, System.Windows.Controls.DataGridCellEditEndingEventArgs e)
{
if (e.EditAction == System.Windows.Controls.DataGridEditAction.Commit)
{
App.DBContext.SaveChanges();
}
}
提前感谢!
答: 暂无答案
评论