Property TabStop
TabStop
Gets or sets the behavior of AdvanceFocus(NavigationDirection, TabBehavior?) for keyboard navigation.
public TabBehavior? TabStop { get; set; }
Property Value
Remarks
See the View Navigation Deep Dive for more information: https://gui-cs.github.io/Terminal.GuiV2Docs/docs/navigation.html
If null the tab stop has not been set and setting CanFocus to true will set it to TabStop.
TabStop is independent of CanFocus. If CanFocus is false, the view will not gain focus even if this property is set and vice versa.
The default TabStop keys are NextTabKey (Key.Tab
)
and PrevTabKey (Key>Tab.WithShift
).
The default TabGroup keys are NextTabGroupKey (
Key.F6
) and PrevTabGroupKey (Key>Key.F6.WithShift
).