15 references to Column
PresentationFramework (15)
System\Windows\Automation\Peers\DataGridAutomationPeer.cs (2)
315
return dataGridItemAutomationPeer.GetOrCreateCellItemPeer(cellInfo.
Column
);
427
IRawElementProviderSimple provider = ProviderFromPeer(itemPeer.GetOrCreateCellItemPeer(cellInfo.
Column
));
System\Windows\Controls\DataGrid.cs (12)
2735
currentCell = (info != null) ? new DataGridCellInfo(info, currentCell.
Column
, this)
2736
: DataGridCellInfo.CreatePossiblyPartialCellInfo(newItem, currentCell.
Column
, this);
2804
dataGrid.SetCurrentValueInternal(CurrentCellProperty, DataGridCellInfo.CreatePossiblyPartialCellInfo(newItem, currentCell.
Column
, dataGrid));
2844
if (currentCell.
Column
!= newColumn)
2882
if (dataGrid.CurrentColumn != currentCell.
Column
)
2884
dataGrid.SetCurrentValueInternal(CurrentColumnProperty, currentCell.
Column
);
2920
dataGrid.ScrollCellIntoView(currentCell.ItemInfo, currentCell.
Column
);
3073
return (column == null || column == currentCell.
Column
) && // columns match
5016
int cellInfoColumnIndex = cellInfo.
Column
.DisplayIndex;
5025
DataGridColumn anchorColumn = _selectionAnchor.Value.
Column
;
5049
int currentCellColumnIndex = CurrentCell.
Column
.DisplayIndex;
6992
return TryFindCell(LeaseItemInfo(info.ItemInfo), info.
Column
);
System\Windows\Controls\VirtualizedCellInfoCollection.cs (1)
1566
columnIndex = cell.
Column
.DisplayIndex;