2 writes to _pendingSelectedCells
PresentationFramework (2)
System\Windows\Controls\DataGrid.cs (2)
4163_pendingSelectedCells = newItems; 4250_pendingSelectedCells = null;
10 references to _pendingSelectedCells
PresentationFramework (10)
System\Windows\Controls\DataGrid.cs (10)
4135if (_pendingSelectedCells != null) 4137VirtualizedCellInfoCollection.Xor(_pendingSelectedCells, oldItems); 4161if (_pendingSelectedCells == null) 4167_pendingSelectedCells.Union(newItems); 4237if (((_pendingSelectedCells != null) && (_pendingSelectedCells.Count > 0)) || 4241SelectedCellsChangedEventArgs e = new SelectedCellsChangedEventArgs(this, _pendingSelectedCells, _pendingUnselectedCells); 4246int selectedCellCount = (_pendingSelectedCells != null) ? _pendingSelectedCells.Count : 0; 4544UpdateIsSelected(_pendingSelectedCells, /* isSelected = */ true);