15 references to Column
PresentationFramework (15)
System\Windows\Automation\Peers\DataGridAutomationPeer.cs (2)
314
return dataGridItemAutomationPeer.GetOrCreateCellItemPeer(cellInfo.
Column
);
426
IRawElementProviderSimple provider = ProviderFromPeer(itemPeer.GetOrCreateCellItemPeer(cellInfo.
Column
));
System\Windows\Controls\DataGrid.cs (12)
2728
currentCell = (info != null) ? new DataGridCellInfo(info, currentCell.
Column
, this)
2729
: DataGridCellInfo.CreatePossiblyPartialCellInfo(newItem, currentCell.
Column
, this);
2797
dataGrid.SetCurrentValueInternal(CurrentCellProperty, DataGridCellInfo.CreatePossiblyPartialCellInfo(newItem, currentCell.
Column
, dataGrid));
2837
if (currentCell.
Column
!= newColumn)
2875
if (dataGrid.CurrentColumn != currentCell.
Column
)
2877
dataGrid.SetCurrentValueInternal(CurrentColumnProperty, currentCell.
Column
);
2913
dataGrid.ScrollCellIntoView(currentCell.ItemInfo, currentCell.
Column
);
3066
return (column == null || column == currentCell.
Column
) && // columns match
5009
int cellInfoColumnIndex = cellInfo.
Column
.DisplayIndex;
5018
DataGridColumn anchorColumn = _selectionAnchor.Value.
Column
;
5042
int currentCellColumnIndex = CurrentCell.
Column
.DisplayIndex;
6985
return TryFindCell(LeaseItemInfo(info.ItemInfo), info.
Column
);
System\Windows\Controls\VirtualizedCellInfoCollection.cs (1)
1565
columnIndex = cell.
Column
.DisplayIndex;