src\Microsoft.DotNet.Wpf\src\Shared\MS\Internal\PointUtil.cs (7)
32public static Point ClientToRoot(Point point, PresentationSource presentationSource)
38public static Point TryClientToRoot(Point point, PresentationSource presentationSource, bool throwOnError, out bool success)
64public static Point RootToClient(Point point, PresentationSource presentationSource)
163public static Point ClientToScreen(Point pointClient, PresentationSource presentationSource)
185internal static Point ScreenToClient(Point pointScreen, PresentationSource presentationSource)
220internal static Rect ElementToRoot(Rect rectElement, Visual element, PresentationSource presentationSource)
244internal static Rect RootToClient(Rect rectRoot, PresentationSource presentationSource)
System\Windows\Input\MouseDevice.cs (19)
118PresentationSource activeSource = CriticalActiveSource;
145PresentationSource activeSource = CriticalActiveSource;
166protected Point GetClientPosition(PresentationSource presentationSource)
198public override PresentationSource ActiveSource => _inputSource;
203internal PresentationSource CriticalActiveSource => _inputSource;
351PresentationSource captureSource = PresentationSource.CriticalFromVisual(containingVisual);
549PresentationSource relativePresentationSource = null;
558relativePresentationSource = PresentationSource.CriticalFromVisual(containingVisual);
792PresentationSource presentationSource = PresentationSource.CriticalFromVisual(visual);
878PresentationSource activeSource = CriticalActiveSource;
2076internal static IInputElement GlobalHitTest(bool clientUnits, Point pt, PresentationSource inputSource)
2085internal static IInputElement GlobalHitTest(Point ptClient, PresentationSource inputSource)
2093private static void GlobalHitTest(bool clientUnits, Point pt, PresentationSource inputSource, out IInputElement enabledHit, out IInputElement originalHit)
2131internal static IInputElement LocalHitTest(bool clientUnits, Point pt, PresentationSource inputSource)
2140internal static IInputElement LocalHitTest(Point ptClient, PresentationSource inputSource)
2147private static void LocalHitTest(bool clientUnits, Point pt, PresentationSource inputSource, out IInputElement enabledHit, out IInputElement originalHit)
2266private PresentationSource _inputSource;
System\Windows\PresentationSource.cs (28)
79public static PresentationSource FromVisual(Visual visual)
93public static PresentationSource FromDependencyObject(DependencyObject dependencyObject)
418PresentationSource oldSource = null;
428oldSource = (PresentationSource)oldRoot.GetValue(RootSourceProperty);
458PresentationSource testSource = (PresentationSource)element.GetValue(CachedSourceProperty);
528internal static PresentationSource CriticalFromVisual(DependencyObject v)
538internal static PresentationSource CriticalFromVisual(DependencyObject v, bool enable2DTo3DTransition)
542PresentationSource source = FindSource(v, enable2DTo3DTransition);
559PresentationSource ps = (PresentationSource)arg;
576PresentationSource baseSource = CriticalFromVisual(visuals[0]);
628element.SetValue(CachedSourceProperty, PresentationSource.FindSource(element));
643private static PresentationSource FindSource(DependencyObject o)
653private static PresentationSource FindSource(DependencyObject o, bool enable2DTo3DTransition)
655PresentationSource source = null;
664source = (PresentationSource)v.GetValue(RootSourceProperty);
675PresentationSource realSource = FindSource(doTarget);
676PresentationSource cachedSource = (PresentationSource)doTarget.GetValue(CachedSourceProperty);
721= DependencyProperty.RegisterAttached("RootSource", typeof(PresentationSource), typeof(PresentationSource),
722new PropertyMetadata((PresentationSource)null));
729= DependencyProperty.RegisterAttached("CachedSource", typeof(PresentationSource), typeof(PresentationSource),
730new PropertyMetadata((PresentationSource)null));
733private static readonly DependencyProperty GetsSourceChangedEventProperty = DependencyProperty.RegisterAttached("IsBeingWatched", typeof(bool), typeof(PresentationSource), new PropertyMetadata((bool)false));
738private static readonly RoutedEvent SourceChangedEvent = EventManager.RegisterRoutedEvent("SourceChanged", RoutingStrategy.Direct, typeof(SourceChangedEventHandler), typeof(PresentationSource));