// Copyright (c) The Avalonia Project. All rights reserved.
// Licensed under the MIT license. See licence.md file in the project root for full license information.
namespace Avalonia.Input
{
///
/// Describes how focus should be moved.
///
public enum FocusNavigationDirection
{
///
/// Move the focus to the next control in the tab order.
///
Next,
///
/// Move the focus to the previous control in the tab order.
///
Previous,
///
/// Move the focus to the first control in the tab order.
///
First,
///
/// Move the focus to the last control in the tab order.
///
Last,
///
/// Move the focus to the left.
///
Left,
///
/// Move the focus to the right.
///
Right,
///
/// Move the focus up.
///
Up,
///
/// Move the focus down.
///
Down,
}
}