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)
2722
currentCell = (info != null) ? new DataGridCellInfo(info, currentCell.
Column
, this)
2723
: DataGridCellInfo.CreatePossiblyPartialCellInfo(newItem, currentCell.
Column
, this);
2791
dataGrid.SetCurrentValueInternal(CurrentCellProperty, DataGridCellInfo.CreatePossiblyPartialCellInfo(newItem, currentCell.
Column
, dataGrid));
2831
if (currentCell.
Column
!= newColumn)
2869
if (dataGrid.CurrentColumn != currentCell.
Column
)
2871
dataGrid.SetCurrentValueInternal(CurrentColumnProperty, currentCell.
Column
);
2907
dataGrid.ScrollCellIntoView(currentCell.ItemInfo, currentCell.
Column
);
3060
return (column == null || column == currentCell.
Column
) && // columns match
5003
int cellInfoColumnIndex = cellInfo.
Column
.DisplayIndex;
5012
DataGridColumn anchorColumn = _selectionAnchor.Value.
Column
;
5036
int currentCellColumnIndex = CurrentCell.
Column
.DisplayIndex;
6979
return TryFindCell(LeaseItemInfo(info.ItemInfo), info.
Column
);
System\Windows\Controls\VirtualizedCellInfoCollection.cs (1)
1565
columnIndex = cell.
Column
.DisplayIndex;