NavigationDirection Enum
Definition
Describes how focus should be moved by directional or tab keys.
public enum NavigationDirection
Fields
| Name | Description |
|---|---|
| Down | Move the focus down. |
| First | Move the focus to the first control in the tab order. |
| Last | Move the focus to the last control in the tab order. |
| Left | Move the focus to the left. |
| Next | Move the focus to the next control in the tab order. |
| PageDown | Move the focus down a page. |
| PageUp | Move the focus up a page. |
| Previous | Move the focus to the previous control in the tab order. |
| Right | Move the focus to the right. |
| Up | Move the focus up. |
Down Field
Move the focus down.
public Avalonia.Input.NavigationDirection Down
First Field
Move the focus to the first control in the tab order.
public Avalonia.Input.NavigationDirection First
Last Field
Move the focus to the last control in the tab order.
public Avalonia.Input.NavigationDirection Last
Left Field
Move the focus to the left.
public Avalonia.Input.NavigationDirection Left
Next Field
Move the focus to the next control in the tab order.
public Avalonia.Input.NavigationDirection Next
PageDown Field
Move the focus down a page.
public Avalonia.Input.NavigationDirection PageDown
PageUp Field
Move the focus up a page.
public Avalonia.Input.NavigationDirection PageUp
Previous Field
Move the focus to the previous control in the tab order.
public Avalonia.Input.NavigationDirection Previous
Right Field
Move the focus to the right.
public Avalonia.Input.NavigationDirection Right
Up Field
Move the focus up.
public Avalonia.Input.NavigationDirection Up