2 writes to _pendingSelectedCells
PresentationFramework (2)
System\Windows\Controls\DataGrid.cs (2)
4162
_pendingSelectedCells
= newItems;
4249
_pendingSelectedCells
= null;
10 references to _pendingSelectedCells
PresentationFramework (10)
System\Windows\Controls\DataGrid.cs (10)
4134
if (
_pendingSelectedCells
!= null)
4136
VirtualizedCellInfoCollection.Xor(
_pendingSelectedCells
, oldItems);
4160
if (
_pendingSelectedCells
== null)
4166
_pendingSelectedCells
.Union(newItems);
4236
if (((
_pendingSelectedCells
!= null) && (
_pendingSelectedCells
.Count > 0)) ||
4240
SelectedCellsChangedEventArgs e = new SelectedCellsChangedEventArgs(this,
_pendingSelectedCells
, _pendingUnselectedCells);
4245
int selectedCellCount = (
_pendingSelectedCells
!= null) ?
_pendingSelectedCells
.Count : 0;
4543
UpdateIsSelected(
_pendingSelectedCells
, /* isSelected = */ true);