// Copyright (c) The Perspex Project. All rights reserved.
// Licensed under the MIT license. See licence.md file in the project root for full license information.
using Perspex.Controls.Primitives;
namespace Perspex.Controls
{
///
/// Defines the placement for a control.
///
public enum PlacementMode
{
///
/// The popup is placed at the pointer position.
///
Pointer,
///
/// The popup is placed at the bottom left of its target.
///
Bottom,
///
/// The popup is placed at the top right of its target.
///
Right
}
}