2 writes to _pendingSelectedCells
PresentationFramework (2)
src\Framework\System\Windows\Controls\DataGrid.cs (2)
4197_pendingSelectedCells = newItems; 4284_pendingSelectedCells = null;
10 references to _pendingSelectedCells
PresentationFramework (10)
src\Framework\System\Windows\Controls\DataGrid.cs (10)
4169if (_pendingSelectedCells != null) 4171VirtualizedCellInfoCollection.Xor(_pendingSelectedCells, oldItems); 4195if (_pendingSelectedCells == null) 4201_pendingSelectedCells.Union(newItems); 4271if (((_pendingSelectedCells != null) && (_pendingSelectedCells.Count > 0)) || 4275SelectedCellsChangedEventArgs e = new SelectedCellsChangedEventArgs(this, _pendingSelectedCells, _pendingUnselectedCells); 4280int selectedCellCount = (_pendingSelectedCells != null) ? _pendingSelectedCells.Count : 0; 4584UpdateIsSelected(_pendingSelectedCells, /* isSelected = */ true);