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