4 overrides of TransformBounds
PresentationCore (4)
Core\CSharp\MS\Internal\Media3D\GeneralTransform2Dto3Dto2D.cs (1)
1175public override Rect TransformBounds(Rect rect)
Core\CSharp\System\Windows\Media\Effects\Effect.cs (1)
209public override Rect TransformBounds(Rect rect)
Core\CSharp\System\Windows\Media\GeneralTransformGroup.cs (1)
83public override Rect TransformBounds(Rect rect)
Core\CSharp\System\Windows\Media\Transform.cs (1)
153public override Rect TransformBounds(Rect rect)
43 references to TransformBounds
PresentationCore (6)
Core\CSharp\MS\Internal\Automation\ElementUtil.cs (1)
143return g.TransformBounds(rect);
Core\CSharp\System\Windows\Automation\Peers\UIElementAutomationPeer.cs (1)
316clipBounds = transform.TransformBounds(clipBounds);
Core\CSharp\System\Windows\Media\GeneralTransformGroup.cs (1)
93result = Children.Internal_GetItem(i).TransformBounds(result);
Core\CSharp\System\Windows\Media\Visual.cs (1)
577Rect unitTransformedBounds = effect.EffectMapping.TransformBounds(unitBounds);
Core\CSharp\System\Windows\Media3D\GeneralTransform3DTo2D.cs (1)
95return _transformBetween2D.TransformBounds(MILUtilities.ProjectBounds(ref _projectionTransform, ref rect3D));
Shared\MS\Internal\PointUtil.cs (1)
252Rect rectRoot = transformElementToRoot.TransformBounds(rectElement);
PresentationFramework (37)
src\Framework\MS\Internal\Documents\DocumentGrid.cs (1)
1857Rect offsetRect = transform.TransformBounds(boundingRect);
src\Framework\MS\Internal\Documents\DocumentViewerHelper.cs (1)
487rectBounds = transform.TransformBounds(rectBounds);
src\Framework\MS\Internal\Documents\MultiPageTextView.cs (1)
1275rect = transform.TransformBounds(rect);
src\Framework\MS\Internal\Documents\ScrollData.cs (1)
188rectangle = childTransform.TransformBounds(rectangle);
src\Framework\MS\Internal\Helper.cs (1)
1204Rect itemsRect = itemsHost.TransformToAncestor(virtualizingElement).TransformBounds(new Rect(new Point(), itemsHost.DesiredSize));
src\Framework\MS\Internal\Ink\InkCanvasSelection.cs (2)
413elementBounds = elementToCanvas.TransformBounds(elementBounds); // Rect in Canvas space 1098rect = elementToCanvas.TransformBounds(rect); // Rect in Canvas space
src\Framework\MS\Internal\PtsHost\FlowDocumentPage.cs (2)
351transformedRectangles.Add(transform.TransformBounds(rectangles[index])); 658contentViewport = transform.TransformBounds(contentViewport);
src\Framework\System\Windows\Automation\Peers\DocumentAutomationPeer.cs (1)
271clipBounds = transform.TransformBounds(clipBounds);
src\Framework\System\Windows\Automation\Peers\TextElementAutomationPeer.cs (1)
203rectBounds = transform.TransformBounds(rectBounds);
src\Framework\System\Windows\Controls\DataGrid.cs (1)
6565if (itemsHostBounds.Contains(transform.TransformBounds(cellBounds)))
src\Framework\System\Windows\Controls\FlowDocumentScrollViewer.cs (2)
1146targetRect = t.TransformBounds(targetRect); 1174targetRect = t.TransformBounds(targetRect);
src\Framework\System\Windows\Controls\GridViewRowPresenter.cs (1)
491itemBounds = _viewItem.TransformToAncestor(_viewPort).TransformBounds(itemBounds);
src\Framework\System\Windows\Controls\ItemsControl.cs (2)
2641elementBounds = element.TransformToAncestor(viewportElement).TransformBounds(elementBounds); 3016elementBounds = element.TransformToAncestor(viewPort).TransformBounds(elementBounds);
src\Framework\System\Windows\Controls\Primitives\DocumentViewerBase.cs (1)
1193targetRect = transform.TransformBounds(targetRect);
src\Framework\System\Windows\Controls\Primitives\ScrollContentPresenter.cs (1)
595rectangle = childTransform.TransformBounds(rectangle);
src\Framework\System\Windows\Controls\ScrollViewer.cs (1)
2322rcNew = t.TransformBounds(rcNew);
src\Framework\System\Windows\Controls\SinglePageViewer.cs (1)
847pageRect = pageViews[index].TransformToAncestor(this).TransformBounds(pageRect);
src\Framework\System\Windows\Controls\Stack.cs (1)
265rectangle = childTransform.TransformBounds(rectangle);
src\Framework\System\Windows\Controls\TextAdaptor.cs (2)
260rangeBounds = childToParent.TransformBounds(rangeBounds); 339rectBounds = transform.TransformBounds(rectBounds);
src\Framework\System\Windows\Controls\VirtualizingStackPanel.cs (2)
1459rectangle = childTransform.TransformBounds(rectangle); 6336Rect itemsRect = transform.TransformBounds(childRect);
src\Framework\System\Windows\Documents\CompositionAdorner.cs (1)
261rect = transform.TransformBounds(rect);
src\Framework\System\Windows\Documents\FixedSOMImage.cs (1)
37_boundingRect = trans.TransformBounds(imageRect);
src\Framework\System\Windows\Documents\FixedSOMTextRun.cs (1)
40_boundingRect = trans.TransformBounds(boundingRect);
src\Framework\System\Windows\Documents\FixedTextView.cs (1)
303backgroundRect = transform.TransformBounds(backgroundRect);
src\Framework\System\Windows\Documents\HighlightVisual.cs (1)
242backgroundRect = transform.TransformBounds(backgroundRect);
src\Framework\System\Windows\Documents\TextPointerBase.cs (1)
918rect = transformFromRenderToUiScope.TransformBounds(rect);
src\Framework\System\Windows\Input\KeyboardNavigation.cs (5)
648rect = _hostToAdornedElement.TransformBounds(rect); 665rect = _hostToAdornedElement.TransformBounds(rect); 2490return transform.TransformBounds(new Rect(x, y, width, height)); 2520return transform.TransformBounds(rect); 2538return transform.TransformBounds(rectElement);