0
庵試圖從WPF的Datagrid 獲得當前編輯和更新項目這是我的代碼的DataGrid CellEditending事件不會在細胞返回更新值
private void onCellEdit (object sender, DataGridCellEditEndingEventArgs e)
{
VML.MyViewModel.CurrentPackage = (MyPackage)e.EditingElement.DataContext;
}
綁定屬性
Mode=TwoWay, UpdateSourceTrigger=Default
不幸的是,這會在編輯單元格之前返回值,不會更新屬性,在編輯之前EditingElement.DataContext中可用的值具有較舊的值
有沒有一種方法可以在不使用selectedrowchange事件的情況下獲得編輯後的值,因爲它不會與最後一行一起工作?
hows your xaml?你有更新的任何更新? – Muds
@Muds更新綁定屬性 – Kalanamith