2 writes to _pendingSelectedCells
PresentationFramework (2)
System\Windows\Controls\DataGrid.cs (2)
4150
_pendingSelectedCells
= newItems;
4237
_pendingSelectedCells
= null;
10 references to _pendingSelectedCells
PresentationFramework (10)
System\Windows\Controls\DataGrid.cs (10)
4122
if (
_pendingSelectedCells
!= null)
4124
VirtualizedCellInfoCollection.Xor(
_pendingSelectedCells
, oldItems);
4148
if (
_pendingSelectedCells
== null)
4154
_pendingSelectedCells
.Union(newItems);
4224
if (((
_pendingSelectedCells
!= null) && (
_pendingSelectedCells
.Count > 0)) ||
4228
SelectedCellsChangedEventArgs e = new SelectedCellsChangedEventArgs(this,
_pendingSelectedCells
, _pendingUnselectedCells);
4233
int selectedCellCount = (
_pendingSelectedCells
!= null) ?
_pendingSelectedCells
.Count : 0;
4531
UpdateIsSelected(
_pendingSelectedCells
, /* isSelected = */ true);