27 instantiations of PointCombination
PresentationFramework (27)
System\Windows\Controls\Primitives\Popup.cs (27)
2515if (i == 0) return new PointCombination(InterestPoint.BottomRight, InterestPoint.TopRight); 2516if (i == 1) return new PointCombination(InterestPoint.TopRight, InterestPoint.BottomRight); 2520if (i == 0) return new PointCombination(InterestPoint.BottomLeft, InterestPoint.TopLeft); 2521if (i == 1) return new PointCombination(InterestPoint.TopLeft, InterestPoint.BottomLeft); 2530if (i == 0) return new PointCombination(InterestPoint.TopRight, InterestPoint.BottomRight); 2531if (i == 1) return new PointCombination(InterestPoint.BottomRight, InterestPoint.TopRight); 2535if (i == 0) return new PointCombination(InterestPoint.TopLeft, InterestPoint.BottomLeft); 2536if (i == 1) return new PointCombination(InterestPoint.BottomLeft, InterestPoint.TopLeft); 2549if (i == 0) return new PointCombination(InterestPoint.TopLeft, InterestPoint.TopRight); 2550if (i == 1) return new PointCombination(InterestPoint.BottomLeft, InterestPoint.BottomRight); 2551if (i == 2) return new PointCombination(InterestPoint.TopRight, InterestPoint.TopLeft); 2552if (i == 3) return new PointCombination(InterestPoint.BottomRight, InterestPoint.BottomLeft); 2556if (i == 0) return new PointCombination(InterestPoint.TopRight, InterestPoint.TopLeft); 2557if (i == 1) return new PointCombination(InterestPoint.BottomRight, InterestPoint.BottomLeft); 2558if (i == 2) return new PointCombination(InterestPoint.TopLeft, InterestPoint.TopRight); 2559if (i == 3) return new PointCombination(InterestPoint.BottomLeft, InterestPoint.BottomRight); 2570if (i == 0) return new PointCombination(InterestPoint.TopLeft, InterestPoint.TopRight); 2571if (i == 1) return new PointCombination(InterestPoint.TopLeft, InterestPoint.TopLeft); 2572if (i == 2) return new PointCombination(InterestPoint.TopLeft, InterestPoint.BottomRight); 2573if (i == 3) return new PointCombination(InterestPoint.TopLeft, InterestPoint.BottomLeft); 2577if (i == 0) return new PointCombination(InterestPoint.TopLeft, InterestPoint.TopLeft); 2578if (i == 1) return new PointCombination(InterestPoint.TopLeft, InterestPoint.TopRight); 2579if (i == 2) return new PointCombination(InterestPoint.TopLeft, InterestPoint.BottomLeft); 2580if (i == 3) return new PointCombination(InterestPoint.TopLeft, InterestPoint.BottomRight); 2586return new PointCombination(InterestPoint.Center, InterestPoint.Center); 2592return new PointCombination(InterestPoint.TopLeft, InterestPoint.TopLeft); 2595return new PointCombination(InterestPoint.TopLeft, InterestPoint.TopRight);
2 references to PointCombination
PresentationFramework (2)
System\Windows\Controls\Primitives\Popup.cs (2)
2075PointCombination pointCombination = GetPointCombination(placement, i, out axis); 2502private PointCombination GetPointCombination(PlacementMode placement, int i, out PopupPrimaryAxis axis)