27 instantiations of PointCombination
PresentationFramework (27)
System\Windows\Controls\Primitives\Popup.cs (27)
2502if (i == 0) return new PointCombination(InterestPoint.BottomRight, InterestPoint.TopRight); 2503if (i == 1) return new PointCombination(InterestPoint.TopRight, InterestPoint.BottomRight); 2507if (i == 0) return new PointCombination(InterestPoint.BottomLeft, InterestPoint.TopLeft); 2508if (i == 1) return new PointCombination(InterestPoint.TopLeft, InterestPoint.BottomLeft); 2517if (i == 0) return new PointCombination(InterestPoint.TopRight, InterestPoint.BottomRight); 2518if (i == 1) return new PointCombination(InterestPoint.BottomRight, InterestPoint.TopRight); 2522if (i == 0) return new PointCombination(InterestPoint.TopLeft, InterestPoint.BottomLeft); 2523if (i == 1) return new PointCombination(InterestPoint.BottomLeft, InterestPoint.TopLeft); 2536if (i == 0) return new PointCombination(InterestPoint.TopLeft, InterestPoint.TopRight); 2537if (i == 1) return new PointCombination(InterestPoint.BottomLeft, InterestPoint.BottomRight); 2538if (i == 2) return new PointCombination(InterestPoint.TopRight, InterestPoint.TopLeft); 2539if (i == 3) return new PointCombination(InterestPoint.BottomRight, InterestPoint.BottomLeft); 2543if (i == 0) return new PointCombination(InterestPoint.TopRight, InterestPoint.TopLeft); 2544if (i == 1) return new PointCombination(InterestPoint.BottomRight, InterestPoint.BottomLeft); 2545if (i == 2) return new PointCombination(InterestPoint.TopLeft, InterestPoint.TopRight); 2546if (i == 3) return new PointCombination(InterestPoint.BottomLeft, InterestPoint.BottomRight); 2557if (i == 0) return new PointCombination(InterestPoint.TopLeft, InterestPoint.TopRight); 2558if (i == 1) return new PointCombination(InterestPoint.TopLeft, InterestPoint.TopLeft); 2559if (i == 2) return new PointCombination(InterestPoint.TopLeft, InterestPoint.BottomRight); 2560if (i == 3) return new PointCombination(InterestPoint.TopLeft, InterestPoint.BottomLeft); 2564if (i == 0) return new PointCombination(InterestPoint.TopLeft, InterestPoint.TopLeft); 2565if (i == 1) return new PointCombination(InterestPoint.TopLeft, InterestPoint.TopRight); 2566if (i == 2) return new PointCombination(InterestPoint.TopLeft, InterestPoint.BottomLeft); 2567if (i == 3) return new PointCombination(InterestPoint.TopLeft, InterestPoint.BottomRight); 2573return new PointCombination(InterestPoint.Center, InterestPoint.Center); 2579return new PointCombination(InterestPoint.TopLeft, InterestPoint.TopLeft); 2582return new PointCombination(InterestPoint.TopLeft, InterestPoint.TopRight);
2 references to PointCombination
PresentationFramework (2)
System\Windows\Controls\Primitives\Popup.cs (2)
2062PointCombination pointCombination = GetPointCombination(placement, i, out axis); 2489private PointCombination GetPointCombination(PlacementMode placement, int i, out PopupPrimaryAxis axis)