2 writes to _pendingSelectedCells
PresentationFramework (2)
System\Windows\Controls\DataGrid.cs (2)
4189_pendingSelectedCells = newItems; 4276_pendingSelectedCells = null;
10 references to _pendingSelectedCells
PresentationFramework (10)
System\Windows\Controls\DataGrid.cs (10)
4161if (_pendingSelectedCells != null) 4163VirtualizedCellInfoCollection.Xor(_pendingSelectedCells, oldItems); 4187if (_pendingSelectedCells == null) 4193_pendingSelectedCells.Union(newItems); 4263if (((_pendingSelectedCells != null) && (_pendingSelectedCells.Count > 0)) || 4267SelectedCellsChangedEventArgs e = new SelectedCellsChangedEventArgs(this, _pendingSelectedCells, _pendingUnselectedCells); 4272int selectedCellCount = (_pendingSelectedCells != null) ? _pendingSelectedCells.Count : 0; 4576UpdateIsSelected(_pendingSelectedCells, /* isSelected = */ true);