Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TabControlViewBase.AllowKeyboardNavigation Property

Gets or sets whether navigation between tab items can be performed via the keyboard. This is a dependency property.

Namespace: DevExpress.Xpf.Core

Assembly: DevExpress.Xpf.Core.v24.2.dll

NuGet Package: DevExpress.Wpf.Core

#Declaration

public bool? AllowKeyboardNavigation { get; set; }

#Property Value

Type Description
Nullable<Boolean>

true, if navigation between tab items can be performed via the keyboard; otherwise, false.

The default is null.

#Remarks

To navigate between tab items, use the ARROWS, TAB, HOME and END keys.

To navigate to the next tab, do one of the following:

  • Press ARROW RIGHT
  • Press ARROW DOWN
  • Press CTRL+TAB

To navigate to the previous tab, do one of the following:

  • Press ARROW LEFT
  • Press ARROW UP
  • Press CTRL+SHIFT+TAB

To navigate to the first tab, do this:

  • Press HOME

To navigate to the last tab, do this:

  • Press END
See Also