8 references to SelectedCellsInternal
PresentationFramework (8)
System\Windows\Automation\Peers\DataGridCellItemAutomationPeer.cs (5)
675
return this.OwningDataGrid.
SelectedCellsInternal
.Contains(new DataGridCellInfo(Item, _column));
696
if (this.OwningDataGrid.
SelectedCellsInternal
.Contains(currentCellInfo))
709
this.OwningDataGrid.
SelectedCellsInternal
.Add(currentCellInfo);
722
if (this.OwningDataGrid.
SelectedCellsInternal
.Contains(currentCellInfo))
724
this.OwningDataGrid.
SelectedCellsInternal
.Remove(currentCellInfo);
System\Windows\Automation\Peers\DataGridItemAutomationPeer.cs (2)
372
if (rowIndex > -1 && dataGrid.
SelectedCellsInternal
.Intersects(rowIndex))
379
if (dataGrid.
SelectedCellsInternal
.Contains(rowIndex, i))
System\Windows\Controls\DataGridCell.cs (1)
124
bool isSelected = dataGrid.
SelectedCellsInternal
.Contains(this);