NavigationDirection Enumeration
Describes how focus should be moved by directional or tab keys.
Definition
Namespace: Avalonia.Input
Assembly: Avalonia.Base (in Avalonia.Base.dll)
- C#
- VB
- F#
public enum NavigationDirection
Public Enumeration NavigationDirection
type NavigationDirection
Members
Next | 0 | Move the focus to the next control in the tab order. |
Previous | 1 | Move the focus to the previous control in the tab order. |
First | 2 | Move the focus to the first control in the tab order. |
Last | 3 | Move the focus to the last control in the tab order. |
Left | 4 | Move the focus to the left. |
Right | 5 | Move the focus to the right. |
Up | 6 | Move the focus up. |
Down | 7 | Move the focus down. |
PageUp | 8 | Move the focus up a page. |
PageDown | 9 | Move the focus down a page. |