27 instantiations of PointCombination
PresentationFramework (27)
System\Windows\Controls\Primitives\Popup.cs (27)
2509if (i == 0) return new PointCombination(InterestPoint.BottomRight, InterestPoint.TopRight); 2510if (i == 1) return new PointCombination(InterestPoint.TopRight, InterestPoint.BottomRight); 2514if (i == 0) return new PointCombination(InterestPoint.BottomLeft, InterestPoint.TopLeft); 2515if (i == 1) return new PointCombination(InterestPoint.TopLeft, InterestPoint.BottomLeft); 2524if (i == 0) return new PointCombination(InterestPoint.TopRight, InterestPoint.BottomRight); 2525if (i == 1) return new PointCombination(InterestPoint.BottomRight, InterestPoint.TopRight); 2529if (i == 0) return new PointCombination(InterestPoint.TopLeft, InterestPoint.BottomLeft); 2530if (i == 1) return new PointCombination(InterestPoint.BottomLeft, InterestPoint.TopLeft); 2543if (i == 0) return new PointCombination(InterestPoint.TopLeft, InterestPoint.TopRight); 2544if (i == 1) return new PointCombination(InterestPoint.BottomLeft, InterestPoint.BottomRight); 2545if (i == 2) return new PointCombination(InterestPoint.TopRight, InterestPoint.TopLeft); 2546if (i == 3) return new PointCombination(InterestPoint.BottomRight, InterestPoint.BottomLeft); 2550if (i == 0) return new PointCombination(InterestPoint.TopRight, InterestPoint.TopLeft); 2551if (i == 1) return new PointCombination(InterestPoint.BottomRight, InterestPoint.BottomLeft); 2552if (i == 2) return new PointCombination(InterestPoint.TopLeft, InterestPoint.TopRight); 2553if (i == 3) return new PointCombination(InterestPoint.BottomLeft, InterestPoint.BottomRight); 2564if (i == 0) return new PointCombination(InterestPoint.TopLeft, InterestPoint.TopRight); 2565if (i == 1) return new PointCombination(InterestPoint.TopLeft, InterestPoint.TopLeft); 2566if (i == 2) return new PointCombination(InterestPoint.TopLeft, InterestPoint.BottomRight); 2567if (i == 3) return new PointCombination(InterestPoint.TopLeft, InterestPoint.BottomLeft); 2571if (i == 0) return new PointCombination(InterestPoint.TopLeft, InterestPoint.TopLeft); 2572if (i == 1) return new PointCombination(InterestPoint.TopLeft, InterestPoint.TopRight); 2573if (i == 2) return new PointCombination(InterestPoint.TopLeft, InterestPoint.BottomLeft); 2574if (i == 3) return new PointCombination(InterestPoint.TopLeft, InterestPoint.BottomRight); 2580return new PointCombination(InterestPoint.Center, InterestPoint.Center); 2586return new PointCombination(InterestPoint.TopLeft, InterestPoint.TopLeft); 2589return new PointCombination(InterestPoint.TopLeft, InterestPoint.TopRight);
2 references to PointCombination
PresentationFramework (2)
System\Windows\Controls\Primitives\Popup.cs (2)
2069PointCombination pointCombination = GetPointCombination(placement, i, out axis); 2496private PointCombination GetPointCombination(PlacementMode placement, int i, out PopupPrimaryAxis axis)