9 instantiations of Point
PresentationFramework (9)
System\Windows\Controls\PopupControlService.cs (9)
1570points.Add(new Point(rect.right, rect.top, Direction.Left)); 1571points.Add(new Point(rect.left, rect.top, Direction.Down)); 1572points.Add(new Point(rect.left, rect.bottom, Direction.Right)); 1573points.Add(new Point(rect.right, rect.bottom, Direction.Up)); 1578points.Add(new Point(rect.left, rect.top)); 1579points.Add(new Point(rect.right, rect.top)); 1580points.Add(new Point(rect.left, rect.bottom)); 1581points.Add(new Point(rect.right, rect.bottom)); 1681Point p = new Point(x, y);
9 references to Point
PresentationFramework (9)
System\Windows\Controls\PopupControlService.cs (9)
1387Point p = points[i]; 1429Point leftmost = points[currentIndex]; 1435Point rightmost = points[next - 1]; 1681Point p = new Point(x, y); 1697private static int Cross(in Point a, in Point b, in Point c) 1719private class PointList : List<Point> 1722private Point[] _points;