8 references to SelectedCellsInternal
PresentationFramework (8)
System\Windows\Automation\Peers\DataGridCellItemAutomationPeer.cs (5)
671
return this.OwningDataGrid.
SelectedCellsInternal
.Contains(new DataGridCellInfo(Item, _column));
692
if (this.OwningDataGrid.
SelectedCellsInternal
.Contains(currentCellInfo))
705
this.OwningDataGrid.
SelectedCellsInternal
.Add(currentCellInfo);
718
if (this.OwningDataGrid.
SelectedCellsInternal
.Contains(currentCellInfo))
720
this.OwningDataGrid.
SelectedCellsInternal
.Remove(currentCellInfo);
System\Windows\Automation\Peers\DataGridItemAutomationPeer.cs (2)
371
if (rowIndex > -1 && dataGrid.
SelectedCellsInternal
.Intersects(rowIndex))
378
if (dataGrid.
SelectedCellsInternal
.Contains(rowIndex, i))
System\Windows\Controls\DataGridCell.cs (1)
123
bool isSelected = dataGrid.
SelectedCellsInternal
.Contains(this);