Skip to main content

NavigationDirection Enum

Definition

Namespace:Avalonia.Input
Assembly:Avalonia.Base
Package:Avalonia

Describes how focus should be moved by directional or tab keys.

public enum NavigationDirection

Inheritance: Enum -> NavigationDirection

Fields

NameDescription
DownMove the focus down.
FirstMove the focus to the first control in the tab order.
LastMove the focus to the last control in the tab order.
LeftMove the focus to the left.
NextMove the focus to the next control in the tab order.
PageDownMove the focus down a page.
PageUpMove the focus up a page.
PreviousMove the focus to the previous control in the tab order.
RightMove the focus to the right.
UpMove 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