15 references to FindVisualParent
PresentationFramework (15)
System\Windows\Controls\DataGrid.cs (11)
1908_internalScrollContentPresenter = DataGridHelper.FindVisualParent<ScrollContentPresenter>(_internalItemsHost); 1913_internalScrollContentPresenter = DataGridHelper.FindVisualParent<ScrollContentPresenter>(row); 1925_internalScrollHost = DataGridHelper.FindVisualParent<ScrollViewer>(_internalItemsHost); 1930_internalScrollHost = DataGridHelper.FindVisualParent<ScrollViewer>(row); 2296return ((source == this) || (source == null)) ? CurrentCellContainer : DataGridHelper.FindVisualParent<DataGridCell>(source); 5625GroupItem currentGroupItem = DataGridHelper.FindVisualParent<GroupItem>(currentCellContainer); 5887DataGridRow focusRow = DataGridHelper.FindVisualParent<DataGridRow>(focusContainer); 6186startingRow = DataGridHelper.FindVisualParent<DataGridRow>(startingElement); 6204targetRowElement = DataGridHelper.FindVisualParent<DataGridRow>(targetElement); 6614row = DataGridHelper.FindVisualParent<DataGridRow>(element); 6635cell = DataGridHelper.FindVisualParent<DataGridCell>(element);
System\Windows\Controls\DataGridCell.cs (2)
551DataGridCell cell = DataGridHelper.FindVisualParent<DataGridCell>(e.OriginalSource as UIElement); 564DataGridCell cell = DataGridHelper.FindVisualParent<DataGridCell>(e.OriginalSource as UIElement);
System\Windows\Controls\DataGridRow.cs (1)
1332return DataGridHelper.FindVisualParent<DataGridRow>(element);
System\Windows\Controls\Primitives\SelectiveScrollingGrid.cs (1)
56ScrollViewer scrollViewer = DataGridHelper.FindVisualParent<ScrollViewer>(element);