56 references to DataGridCellsPresenter
PresentationFramework (54)
src\Framework\System\Windows\Automation\Peers\DataGridRowAutomationPeer.cs (1)
57DataGridCellsPresenter cellsPresenter = OwningDataGridRow.CellsPresenter;
src\Framework\System\Windows\Controls\DataGrid.cs (6)
623var cellsPresenter = row.CellsPresenter; 4633DataGridCellsPresenter cellsPresenter = row.CellsPresenter; 5453DataGridCellsPresenter cellsPresenter = itemsControl as DataGridCellsPresenter; 6496DataGridCellsPresenter cellsPresenter = row.CellsPresenter; 8579DataGridCellsPresenter cellsPresenter = rowTracker.Container.CellsPresenter;
src\Framework\System\Windows\Controls\DataGridCell.cs (2)
1082private DataGridCellsPresenter CellsPresenter 1086return ItemsControl.ItemsControlFromItemContainer(this) as DataGridCellsPresenter;
src\Framework\System\Windows\Controls\DataGridCellsPanel.cs (10)
1058DataGridCellsPresenter cellsPresenter = parentPresenter as DataGridCellsPresenter; 1796DataGridCellsPresenter cellsPresenter = parentPresenter as DataGridCellsPresenter; 1817DataGridCellsPresenter cellsPresenter = parentPresenter as DataGridCellsPresenter; 1857DataGridCellsPresenter presenter = ParentPresenter as DataGridCellsPresenter; 2415DataGridCellsPresenter presenter = ParentPresenter as DataGridCellsPresenter;
src\Framework\System\Windows\Controls\DataGridRow.cs (17)
151DataGridCellsPresenter cellsPresenter = CellsPresenter; 487var cellsPresenter = CellsPresenter; 490PersistAttachedItemValue(cellsPresenter, DataGridCellsPresenter.HeightProperty); 539var cellsPresenter = CellsPresenter; 548var cellsPresenter = CellsPresenter; 573var cellsPresenter = CellsPresenter; 582var cellsPresenter = CellsPresenter; 585cellsPresenter.ClearValue(DataGridCellsPresenter.HeightProperty); 588_owner.ItemAttachedStorage.ClearValue(Item, DataGridCellsPresenter.HeightProperty); 604DataGridCellsPresenter cellsPresenter = CellsPresenter; 844internal DataGridCellsPresenter CellsPresenter 951DataGridCellsPresenter cellsPresenter = CellsPresenter; 1011var cellsPresenter = CellsPresenter; 1015RestoreAttachedItemValue(cellsPresenter, DataGridCellsPresenter.HeightProperty); 1253DataGridCellsPresenter cellsPresenter = CellsPresenter; 1360DataGridCellsPresenter cellsPresenter = CellsPresenter; 1379private DataGridCellsPresenter _cellsPresenter;
src\Framework\System\Windows\Controls\Primitives\DataGridCellsPresenter.cs (17)
39DefaultStyleKeyProperty.OverrideMetadata(typeof(DataGridCellsPresenter), new FrameworkPropertyMetadata(typeof(DataGridCellsPresenter))); 40ItemsPanelProperty.OverrideMetadata(typeof(DataGridCellsPresenter), new FrameworkPropertyMetadata(new ItemsPanelTemplate(new FrameworkElementFactory(typeof(DataGridCellsPanel))))); 41FocusableProperty.OverrideMetadata(typeof(DataGridCellsPresenter), new FrameworkPropertyMetadata(false)); 43HeightProperty.OverrideMetadata(typeof(DataGridCellsPresenter), new FrameworkPropertyMetadata(OnNotifyHeightPropertyChanged, OnCoerceHeight)); 44MinHeightProperty.OverrideMetadata(typeof(DataGridCellsPresenter), new FrameworkPropertyMetadata(OnNotifyHeightPropertyChanged, OnCoerceMinHeight)); 47typeof(DataGridCellsPresenter), 49VirtualizingPanel.VirtualizationModeProperty.OverrideMetadata(typeof(DataGridCellsPresenter), new FrameworkPropertyMetadata(VirtualizationMode.Recycling)); 201var cellsPresenter = d as DataGridCellsPresenter; 212var cellsPresenter = d as DataGridCellsPresenter; 369((DataGridCellsPresenter)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.CellsPresenter); 503DataGridCellsPresenter cellsPresenter = (DataGridCellsPresenter)d; 516var cellsPresenter = d as DataGridCellsPresenter;
src\Framework\System\Windows\Controls\Primitives\Selector.cs (1)
1947return (itemsControl is DataGrid) || (itemsControl is DataGridCellsPresenter);
System.Activities.Presentation (2)
System.Activities.Presentation\System\Activities\Presentation\View\DataGridHelper.cs (2)
996DataGridCellsPresenter presenter = GetVisualChild<DataGridCellsPresenter>(rowContainer);