13 references to ClientToScreen
PresentationCore (13)
src\Microsoft.DotNet.Wpf\src\Shared\MS\Internal\PointUtil.cs (2)
276Point corner1 = ClientToScreen(rectClient.TopLeft, hwndSource); 277Point corner2 = ClientToScreen(rectClient.BottomRight, hwndSource);
System\Windows\Input\InputElement.cs (1)
286Point ptScreen = PointUtil.ClientToScreen(ptTranslated, sourceFrom);
System\Windows\Input\MouseDevice.cs (2)
134ptScreen = PointUtil.ClientToScreen(_lastPosition, activeSource); 2104Point ptScreen = PointUtil.ClientToScreen(ptClient, source);
System\Windows\Input\Stylus\Wisp\WispLogic.cs (2)
2931Point ptScreen = PointUtil.ClientToScreen(ptClient, source); 3206penContexts.DestroyedLocation = PointUtil.ClientToScreen(new Point(0, 0), hwndSource);
System\Windows\Input\Stylus\Wisp\WispStylusDevice.cs (5)
1444Point newWindowLocation = PointUtil.ClientToScreen(new Point(0, 0), inputSource); 1463_lastScreenLocation = PointUtil.ClientToScreen(pt, inputSource); 1501dragPosition = PointUtil.ClientToScreen(dragPosition, inputSource); 1664Point newWindowLocation = PointUtil.ClientToScreen(new Point(0, 0), inputSource); 1678_lastScreenLocation = PointUtil.ClientToScreen(pt, inputSource);
System\Windows\Media\Visual.cs (1)
4763point = PointUtil.ClientToScreen(point, inputSource);