A cross-platform UI framework for .NET
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

51 lines
1.2 KiB

// 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
{
/// <summary>
/// Describes how focus should be moved.
/// </summary>
public enum FocusNavigationDirection
{
/// <summary>
/// Move the focus to the next control in the tab order.
/// </summary>
Next,
/// <summary>
/// Move the focus to the previous control in the tab order.
/// </summary>
Previous,
/// <summary>
/// Move the focus to the first control in the tab order.
/// </summary>
First,
/// <summary>
/// Move the focus to the last control in the tab order.
/// </summary>
Last,
/// <summary>
/// Move the focus to the left.
/// </summary>
Left,
/// <summary>
/// Move the focus to the right.
/// </summary>
Right,
/// <summary>
/// Move the focus up.
/// </summary>
Up,
/// <summary>
/// Move the focus down.
/// </summary>
Down,
}
}