12 references to DataGridCellsPanel
PresentationFramework (12)
src\Framework\System\Windows\Controls\DataGridCellsPanel.cs (1)
33KeyboardNavigation.TabNavigationProperty.OverrideMetadata(typeof(DataGridCellsPanel), new FrameworkPropertyMetadata(KeyboardNavigationMode.Local));
src\Framework\System\Windows\Controls\DataGridHelper.cs (4)
292DataGridCellsPanel panel = GetParentPanelForCell(cell); 306public static DataGridCellsPanel GetParentPanelForCell(IProvideDataGridColumn cell) 311return VisualTreeHelper.GetParent(element) as DataGridCellsPanel; 322DataGridCellsPanel panel = GetParentPanelForCell(cell);
src\Framework\System\Windows\Controls\DataGridRow.cs (1)
104ItemsPanelProperty.OverrideMetadata(typeof(DataGridRow), new FrameworkPropertyMetadata(new ItemsPanelTemplate(new FrameworkElementFactory(typeof(DataGridCellsPanel)))));
src\Framework\System\Windows\Controls\Primitives\DataGridCellsPresenter.cs (5)
40ItemsPanelProperty.OverrideMetadata(typeof(DataGridCellsPresenter), new FrameworkPropertyMetadata(new ItemsPanelTemplate(new FrameworkElementFactory(typeof(DataGridCellsPanel))))); 144DataGridCellsPanel cellsPanel = InternalItemsHost as DataGridCellsPanel; 587DataGridCellsPanel itemsHost = InternalItemsHost as DataGridCellsPanel;
src\Framework\System\Windows\Controls\Primitives\DataGridColumnHeadersPresenter.cs (1)
43FrameworkElementFactory factory = new FrameworkElementFactory(typeof(DataGridCellsPanel));