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)
4161
if (
_pendingSelectedCells
!= null)
4163
VirtualizedCellInfoCollection.Xor(
_pendingSelectedCells
, oldItems);
4187
if (
_pendingSelectedCells
== null)
4193
_pendingSelectedCells
.Union(newItems);
4263
if (((
_pendingSelectedCells
!= null) && (
_pendingSelectedCells
.Count > 0)) ||
4267
SelectedCellsChangedEventArgs e = new SelectedCellsChangedEventArgs(this,
_pendingSelectedCells
, _pendingUnselectedCells);
4272
int selectedCellCount = (
_pendingSelectedCells
!= null) ?
_pendingSelectedCells
.Count : 0;
4576
UpdateIsSelected(
_pendingSelectedCells
, /* isSelected = */ true);