2 writes to _pendingSelectedCells
PresentationFramework (2)
System\Windows\Controls\DataGrid.cs (2)
4156
_pendingSelectedCells
= newItems;
4243
_pendingSelectedCells
= null;
10 references to _pendingSelectedCells
PresentationFramework (10)
System\Windows\Controls\DataGrid.cs (10)
4128
if (
_pendingSelectedCells
!= null)
4130
VirtualizedCellInfoCollection.Xor(
_pendingSelectedCells
, oldItems);
4154
if (
_pendingSelectedCells
== null)
4160
_pendingSelectedCells
.Union(newItems);
4230
if (((
_pendingSelectedCells
!= null) && (
_pendingSelectedCells
.Count > 0)) ||
4234
SelectedCellsChangedEventArgs e = new SelectedCellsChangedEventArgs(this,
_pendingSelectedCells
, _pendingUnselectedCells);
4239
int selectedCellCount = (
_pendingSelectedCells
!= null) ?
_pendingSelectedCells
.Count : 0;
4537
UpdateIsSelected(
_pendingSelectedCells
, /* isSelected = */ true);