18 references to HitPoint
PresentationCore (12)
Core\CSharp\System\Windows\Media\DrawingVisual.cs (2)
44if (_content.HitTestPoint(hitTestParameters.HitPoint)) 46return new PointHitTestResult(this, hitTestParameters.HitPoint);
Core\CSharp\System\Windows\Media\Visual.cs (7)
1966Point backupHitPoint = pointParams.HitPoint; 1981Debug.Assert(Point.Equals(pointParams.HitPoint, backupHitPoint), 2039if (_bboxSubgraph.Contains(pointParams.HitPoint) && 2040((null == clip) || clip.FillContains(pointParams.HitPoint))) // Check that the hit-point is with-in the clip. 2065Point originalHitPoint = pointParams.HitPoint; 2441if (GetHitTestBounds().Contains(hitTestParameters.HitPoint)) 2443return new PointHitTestResult(this, hitTestParameters.HitPoint);
Core\CSharp\System\Windows\Media3D\Viewport3DVisual.cs (1)
499hitTestParameters.HitPoint,
Core\CSharp\System\Windows\UIElement.cs (2)
3128if (_drawingContent.HitTestPoint(hitTestParameters.HitPoint)) 3130return new PointHitTestResult(this, hitTestParameters.HitPoint);
PresentationFramework (6)
src\Framework\System\Windows\Controls\InkCanvas.cs (2)
273if (r.Contains(hitTestParams.HitPoint)) 275return new PointHitTestResult(this, hitTestParams.HitPoint);
src\Framework\System\Windows\Controls\ScrollViewer.cs (2)
927if (rc.Contains(hitTestParameters.HitPoint)) 929return new PointHitTestResult(this, hitTestParameters.HitPoint);
src\Framework\System\Windows\Controls\TextBlock.cs (2)
1735if (r.Contains(hitTestParameters.HitPoint)) 1737return new PointHitTestResult(this, hitTestParameters.HitPoint);