9 instantiations of Point
PresentationFramework (9)
System\Windows\Controls\PopupControlService.cs (9)
1567points.Add(new Point(rect.right, rect.top, Direction.Left)); 1568points.Add(new Point(rect.left, rect.top, Direction.Down)); 1569points.Add(new Point(rect.left, rect.bottom, Direction.Right)); 1570points.Add(new Point(rect.right, rect.bottom, Direction.Up)); 1575points.Add(new Point(rect.left, rect.top)); 1576points.Add(new Point(rect.right, rect.top)); 1577points.Add(new Point(rect.left, rect.bottom)); 1578points.Add(new Point(rect.right, rect.bottom)); 1678Point p = new Point(x, y);
9 references to Point
PresentationFramework (9)
System\Windows\Controls\PopupControlService.cs (9)
1384Point p = points[i]; 1426Point leftmost = points[currentIndex]; 1432Point rightmost = points[next - 1]; 1678Point p = new Point(x, y); 1694private static int Cross(in Point a, in Point b, in Point c) 1716private class PointList : List<Point> 1719private Point[] _points;