| File: System\Windows\Controls\Primitives\PopupPrimaryAxis.cs | Web Access |
| Project: src\wpf\src\Microsoft.DotNet.Wpf\src\PresentationFramework\PresentationFramework.csproj (PresentationFramework) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Windows.Controls.Primitives { /// <summary> /// Describes how a popup should be nudged on-screen. /// </summary> public enum PopupPrimaryAxis { /// <summary> /// When a popup is nudged on-screen, it will be done using the /// coordinate space of the screen. /// </summary> None, /// <summary> /// When a popup is nudged on-screen, it will be done using the /// horizontal axis of the popup coordinate space /// before using the coordinate space of the screen. /// </summary> Horizontal, /// <summary> /// When a popup is nudged on-screen, it will be done using the /// vertical axis of the popup coordinate space /// before using the coordinate space of the screen. /// </summary> Vertical, } }