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