20 references to CurrentCell
PresentationFramework (16)
src\Framework\System\Windows\Controls\DataGrid.cs (15)
2759DataGridCellInfo currentCell = CurrentCell; 2823DataGridCellInfo currentCell = dataGrid.CurrentCell; 2866DataGridCellInfo currentCell = dataGrid.CurrentCell; 3017DataGridCellInfo currentCell = CurrentCell; 3085get { return LeaseItemInfo(CurrentCell.ItemInfo); } 3090DataGridCellInfo currentCell = CurrentCell; 4779DataGridCellInfo currentCell = CurrentCell; 4918int currentCellIndex = CurrentCell.ItemInfo.Index; 5094int currentCellIndex = CurrentCell.ItemInfo.Index; 5095int currentCellColumnIndex = CurrentCell.Column.DisplayIndex; 6011if (!ItemsControl.EqualsEx(CurrentCell.Item, rowInfo.Item)) 7746if (CellInfoNeedsAdjusting(CurrentCell)) 7747list.Add(CurrentCell.ItemInfo); 7766if (CellInfoNeedsAdjusting(CurrentCell)) 7767list.Add(CurrentCell.ItemInfo);
src\Framework\System\Windows\Controls\Primitives\DataGridDetailsPresenter.cs (1)
133if (dataGridOwner.CurrentCell.Item != rowOwner.Item)
System.Activities.Presentation (4)
System.Activities.Presentation\System\Activities\Presentation\View\DataGridHelper.cs (4)
199if (dataGrid.CurrentCell.Column != null) 201DataGridCellInfo currentCell = dataGrid.CurrentCell; 733if (null != this.dataGrid.SelectedItem && this.dataGrid.CurrentCell.IsValid && view.MoveCurrentTo(this.dataGrid.SelectedItem)) 736int columnIndex = this.dataGrid.Columns.IndexOf(this.dataGrid.CurrentCell.Column);