8 references to TranslatePoint
PresentationCore (8)
System\Windows\DragDrop.cs (1)
1372targetPoint = InputElement.TranslatePoint(targetPoint, source.RootVisual, target);
System\Windows\DragEventArgs.cs (1)
103dropPoint = InputElement.TranslatePoint(_dropPoint, _target, (DependencyObject)relativeTo);
System\Windows\Input\MouseDevice.cs (2)
629ptRelative = InputElement.TranslatePoint(ptRoot, relativePresentationSource.RootVisual, (DependencyObject)relativeTo); 1681ptRelativeToOver = InputElement.TranslatePoint(ptRoot, rawMouseInputReport.InputSource.RootVisual, (DependencyObject)mouseOver);
System\Windows\Input\Stylus\Pointer\PointerStylusDevice.cs (1)
766Point ptRelative = InputElement.TranslatePoint(ptRoot, relativePresentationSource.RootVisual, (DependencyObject)relativeTo);
System\Windows\Input\Stylus\Wisp\WispStylusDevice.cs (1)
1226Point ptRelative = InputElement.TranslatePoint(ptRoot, relativePresentationSource.RootVisual, (DependencyObject)relativeTo);
System\Windows\UIElement.cs (2)
1983return InputElement.TranslatePoint(point, this, relativeTo); 2068pt = InputElement.TranslatePoint(pt, this, candidate);