c# wpf devexpress grid control 如何获取 object of parent 行
c# wpf devexpress grid control how to get object of parent row
我在单元格模板组合框中有一个网格控件数据 table。我正在侦听它的 selectionChanged 事件(使用 mvvm),并且无法从 child(使用 VisualTreeHelper.GetParent((ComboBox)EventArgs.Source)获取 GridRow parent ).
你能帮我得到一个绑定的 object of parent 行吗?
它有一些更新数据库的信息(guid 和新值,用组合框改变)。
在默认的 wpf DataGrid 中,它看起来像:
DataGridRow dgr = DataGridRow.GetRowContainingElement((ComboBox)sender);
var v = ((MyItem)dgr.DataContext).Guid;
我通过 CellValueChangedEventArgs.Row 属性
得到了这个
我在单元格模板组合框中有一个网格控件数据 table。我正在侦听它的 selectionChanged 事件(使用 mvvm),并且无法从 child(使用 VisualTreeHelper.GetParent((ComboBox)EventArgs.Source)获取 GridRow parent ).
你能帮我得到一个绑定的 object of parent 行吗?
它有一些更新数据库的信息(guid 和新值,用组合框改变)。 在默认的 wpf DataGrid 中,它看起来像:
DataGridRow dgr = DataGridRow.GetRowContainingElement((ComboBox)sender);
var v = ((MyItem)dgr.DataContext).Guid;
我通过 CellValueChangedEventArgs.Row 属性
得到了这个