15 references to Column
PresentationFramework (15)
System\Windows\Automation\Peers\DataGridAutomationPeer.cs (2)
315
return dataGridItemAutomationPeer.GetOrCreateCellItemPeer(cellInfo.
Column
);
451
IRawElementProviderSimple provider = ProviderFromPeer(itemPeer.GetOrCreateCellItemPeer(cellInfo.
Column
));
System\Windows\Controls\DataGrid.cs (12)
2756
currentCell = (info != null) ? new DataGridCellInfo(info, currentCell.
Column
, this)
2757
: DataGridCellInfo.CreatePossiblyPartialCellInfo(newItem, currentCell.
Column
, this);
2825
dataGrid.SetCurrentValueInternal(CurrentCellProperty, DataGridCellInfo.CreatePossiblyPartialCellInfo(newItem, currentCell.
Column
, dataGrid));
2865
if (currentCell.
Column
!= newColumn)
2903
if (dataGrid.CurrentColumn != currentCell.
Column
)
2905
dataGrid.SetCurrentValueInternal(CurrentColumnProperty, currentCell.
Column
);
2941
dataGrid.ScrollCellIntoView(currentCell.ItemInfo, currentCell.
Column
);
3097
return (column == null || column == currentCell.
Column
) && // columns match
5058
int cellInfoColumnIndex = cellInfo.
Column
.DisplayIndex;
5067
DataGridColumn anchorColumn = _selectionAnchor.Value.
Column
;
5091
int currentCellColumnIndex = CurrentCell.
Column
.DisplayIndex;
7040
return TryFindCell(LeaseItemInfo(info.ItemInfo), info.
Column
);
System\Windows\Controls\VirtualizedCellInfoCollection.cs (1)
1566
columnIndex = cell.
Column
.DisplayIndex;