Infragistics XamDataGrid Row Select/Deselect
本文关键字:Deselect Select Row XamDataGrid Infragistics | 更新日期: 2023-09-27 18:33:44
当我在 A XamDataGrid
中选择一行然后在XamDataGrid B
中选择一行时,我有两个XamDataGrid
,然后在XamDataGrid A
中选择的行应该取消选择,反之亦然。请指导我。
使用SelectedItemsChanged
事件取消选择其他网格中的记录。 如下代码:
XamDataGrid.SelectedItems.Records.Clear();
没有default functions/method available to sync two grids selection
.