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