12 references to DataGridCellsPanel
PresentationFramework (12)
System\Windows\Controls\DataGridCellsPanel.cs (1)
32
KeyboardNavigation.TabNavigationProperty.OverrideMetadata(typeof(
DataGridCellsPanel
), new FrameworkPropertyMetadata(KeyboardNavigationMode.Local));
System\Windows\Controls\DataGridHelper.cs (4)
291
DataGridCellsPanel
panel = GetParentPanelForCell(cell);
305
public static
DataGridCellsPanel
GetParentPanelForCell(IProvideDataGridColumn cell)
310
return VisualTreeHelper.GetParent(element) as
DataGridCellsPanel
;
321
DataGridCellsPanel
panel = GetParentPanelForCell(cell);
System\Windows\Controls\DataGridRow.cs (1)
103
ItemsPanelProperty.OverrideMetadata(typeof(DataGridRow), new FrameworkPropertyMetadata(new ItemsPanelTemplate(new FrameworkElementFactory(typeof(
DataGridCellsPanel
)))));
System\Windows\Controls\Primitives\DataGridCellsPresenter.cs (5)
39
ItemsPanelProperty.OverrideMetadata(typeof(DataGridCellsPresenter), new FrameworkPropertyMetadata(new ItemsPanelTemplate(new FrameworkElementFactory(typeof(
DataGridCellsPanel
)))));
143
DataGridCellsPanel
cellsPanel = InternalItemsHost as
DataGridCellsPanel
;
586
DataGridCellsPanel
itemsHost = InternalItemsHost as
DataGridCellsPanel
;
System\Windows\Controls\Primitives\DataGridColumnHeadersPresenter.cs (1)
43
FrameworkElementFactory factory = new FrameworkElementFactory(typeof(
DataGridCellsPanel
));