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)
4135
if (
_pendingSelectedCells
!= null)
4137
VirtualizedCellInfoCollection.Xor(
_pendingSelectedCells
, oldItems);
4161
if (
_pendingSelectedCells
== null)
4167
_pendingSelectedCells
.Union(newItems);
4237
if (((
_pendingSelectedCells
!= null) && (
_pendingSelectedCells
.Count > 0)) ||
4241
SelectedCellsChangedEventArgs e = new SelectedCellsChangedEventArgs(this,
_pendingSelectedCells
, _pendingUnselectedCells);
4246
int selectedCellCount = (
_pendingSelectedCells
!= null) ?
_pendingSelectedCells
.Count : 0;
4544
UpdateIsSelected(
_pendingSelectedCells
, /* isSelected = */ true);