AcManager.Controls.UserControls.ModernPopup.OnPlacementCallback C# (CSharp) Method

OnPlacementCallback() private static method

private static OnPlacementCallback ( Size popupSize, Size targetSize, Point offset ) : System.Windows.Controls.Primitives.CustomPopupPlacement[]
popupSize System.Windows.Size
targetSize System.Windows.Size
offset System.Windows.Point
return System.Windows.Controls.Primitives.CustomPopupPlacement[]
        private static CustomPopupPlacement[] OnPlacementCallback(Size popupSize, Size targetSize, Point offset) {
            return new[] {
                new CustomPopupPlacement {
                    Point = new Point(0, targetSize.Height)
                }
            };
        }