18 references to Column
PresentationFramework (15)
src\Framework\System\Windows\Automation\Peers\DataGridAutomationPeer.cs (2)
319return dataGridItemAutomationPeer.GetOrCreateCellItemPeer(cellInfo.Column); 458IRawElementProviderSimple provider = ProviderFromPeer(itemPeer.GetOrCreateCellItemPeer(cellInfo.Column));
src\Framework\System\Windows\Controls\DataGrid.cs (12)
2760currentCell = (info != null) ? new DataGridCellInfo(info, currentCell.Column, this) 2761: DataGridCellInfo.CreatePossiblyPartialCellInfo(newItem, currentCell.Column, this); 2829dataGrid.SetCurrentValueInternal(CurrentCellProperty, DataGridCellInfo.CreatePossiblyPartialCellInfo(newItem, currentCell.Column, dataGrid)); 2869if (currentCell.Column != newColumn) 2907if (dataGrid.CurrentColumn != currentCell.Column) 2909dataGrid.SetCurrentValueInternal(CurrentColumnProperty, currentCell.Column); 2945dataGrid.ScrollCellIntoView(currentCell.ItemInfo, currentCell.Column); 3101return (column == null || column == currentCell.Column) && // columns match 5062int cellInfoColumnIndex = cellInfo.Column.DisplayIndex; 5071DataGridColumn anchorColumn = _selectionAnchor.Value.Column; 5095int currentCellColumnIndex = CurrentCell.Column.DisplayIndex; 7038return TryFindCell(LeaseItemInfo(info.ItemInfo), info.Column);
src\Framework\System\Windows\Controls\VirtualizedCellInfoCollection.cs (1)
1573columnIndex = cell.Column.DisplayIndex;
System.Activities.Presentation (3)
System.Activities.Presentation\System\Activities\Presentation\View\DataGridHelper.cs (3)
199if (dataGrid.CurrentCell.Column != null) 204int currentColumnIndex = columns.IndexOf(dataGrid.ColumnFromDisplayIndex(currentCell.Column.DisplayIndex)); 736int columnIndex = this.dataGrid.Columns.IndexOf(this.dataGrid.CurrentCell.Column);