15 references to Column
PresentationFramework (15)
System\Windows\Automation\Peers\DataGridAutomationPeer.cs (2)
315return dataGridItemAutomationPeer.GetOrCreateCellItemPeer(cellInfo.Column); 451IRawElementProviderSimple provider = ProviderFromPeer(itemPeer.GetOrCreateCellItemPeer(cellInfo.Column));
System\Windows\Controls\DataGrid.cs (12)
2756currentCell = (info != null) ? new DataGridCellInfo(info, currentCell.Column, this) 2757: DataGridCellInfo.CreatePossiblyPartialCellInfo(newItem, currentCell.Column, this); 2825dataGrid.SetCurrentValueInternal(CurrentCellProperty, DataGridCellInfo.CreatePossiblyPartialCellInfo(newItem, currentCell.Column, dataGrid)); 2865if (currentCell.Column != newColumn) 2903if (dataGrid.CurrentColumn != currentCell.Column) 2905dataGrid.SetCurrentValueInternal(CurrentColumnProperty, currentCell.Column); 2941dataGrid.ScrollCellIntoView(currentCell.ItemInfo, currentCell.Column); 3097return (column == null || column == currentCell.Column) && // columns match 5058int cellInfoColumnIndex = cellInfo.Column.DisplayIndex; 5067DataGridColumn anchorColumn = _selectionAnchor.Value.Column; 5091int currentCellColumnIndex = CurrentCell.Column.DisplayIndex; 7040return TryFindCell(LeaseItemInfo(info.ItemInfo), info.Column);
System\Windows\Controls\VirtualizedCellInfoCollection.cs (1)
1566columnIndex = cell.Column.DisplayIndex;