|
@@ -8,6 +8,13 @@ public enum TabBehavior
|
|
|
/// <summary>
|
|
|
/// The View will not be a stop-poknt for keyboard-based navigation.
|
|
|
/// </summary>
|
|
|
+ /// <remarks>
|
|
|
+ /// <para>
|
|
|
+ /// This flag has no impact on whether the view can be focused via means other than the keyboard. Use
|
|
|
+ /// <see cref="View.CanFocus"/>
|
|
|
+ /// to control whether a View can focus or not.
|
|
|
+ /// </para>
|
|
|
+ /// </remarks>
|
|
|
NoStop = 0,
|
|
|
|
|
|
/// <summary>
|
|
@@ -16,7 +23,8 @@ public enum TabBehavior
|
|
|
TabStop = 1,
|
|
|
|
|
|
/// <summary>
|
|
|
- /// The View will be a stop-point for keyboard-based navigation across groups (e.g. if the user presses <see cref="Application.NextTabGroupKey"/> (`Ctrl-PageDown`).
|
|
|
+ /// The View will be a stop-point for keyboard-based navigation across groups (e.g. if the user presses
|
|
|
+ /// <see cref="Application.NextTabGroupKey"/> (`Ctrl-PageDown`).
|
|
|
/// </summary>
|
|
|
- TabGroup = 2,
|
|
|
+ TabGroup = 2
|
|
|
}
|