18 references to ClientToScreen
PresentationCore (14)
src\Microsoft.DotNet.Wpf\src\Shared\MS\Internal\PointUtil.cs (2)
271Point corner1 = ClientToScreen(rectClient.TopLeft, hwndSource); 272Point corner2 = ClientToScreen(rectClient.BottomRight, hwndSource);
System\Windows\Input\InputElement.cs (1)
281Point ptScreen = PointUtil.ClientToScreen(ptTranslated, sourceFrom);
System\Windows\Input\MouseDevice.cs (2)
121ptScreen = PointUtil.ClientToScreen(_lastPosition, activeSource); 2103Point ptScreen = PointUtil.ClientToScreen(ptClient, source);
System\Windows\Input\Stylus\Wisp\WispLogic.cs (2)
2944Point ptScreen = PointUtil.ClientToScreen(ptClient, source); 3219penContexts.DestroyedLocation = PointUtil.ClientToScreen(new Point(0, 0), hwndSource);
System\Windows\Input\Stylus\Wisp\WispStylusDevice.cs (5)
1412Point newWindowLocation = PointUtil.ClientToScreen(new Point(0, 0), inputSource); 1431_lastScreenLocation = PointUtil.ClientToScreen(pt, inputSource); 1469dragPosition = PointUtil.ClientToScreen(dragPosition, inputSource); 1632Point newWindowLocation = PointUtil.ClientToScreen(new Point(0, 0), inputSource); 1646_lastScreenLocation = PointUtil.ClientToScreen(pt, inputSource);
System\Windows\InterOp\HwndMouseInputProvider.cs (1)
1440currentPosition = PointUtil.ClientToScreen(currentPosition, _source);
System\Windows\Media\Visual.cs (1)
4735point = PointUtil.ClientToScreen(point, inputSource);
PresentationFramework (4)
src\Microsoft.DotNet.Wpf\src\Shared\MS\Internal\SafeSecurityHelper.cs (1)
74Point ptScreen = PointUtil.ClientToScreen(ptClient, source);
System\Windows\Controls\PopupControlService.cs (1)
1597System.Windows.Point ptScreen = PointUtil.ClientToScreen(pt, mouseSource);
System\Windows\Controls\Primitives\Popup.cs (1)
3013devicePoint = PointUtil.ClientToScreen(clientPt, hwnd);
System\Windows\Controls\TextAdaptor.cs (1)
402return PointUtil.ClientToScreen(point, presentationSource);