namespace Terminal.Gui;
///
/// Defines the scope of a that has been bound to a key with
/// .
///
///
/// Key bindings are scoped to the most-focused view () by default.
///
///
///
///
[Flags]
public enum KeyBindingScope
{
/// The key binding is disabled.
Disabled = 0,
///
/// The key binding is scoped to just the view that has focus.
///
///
///
///
Focused = 1
}