NavigationDirection Enumeration
Describes how focus should be moved by directional or tab keys.
Namespace: Avalonia.InputAssembly: Avalonia.Base (in Avalonia.Base.dll) Version: 11.3.999
public enum NavigationDirection
Public Enumeration NavigationDirection
| 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.
|