namespace Terminal.Gui.Drawing; // ReSharper disable InconsistentNaming /// /// The built-in scheme names used by . /// returns a collection valid scheme names, based on this enum. /// public enum Schemes { /// /// The base scheme used for most Views. /// Base, /// /// The menu scheme, used for Terminal.Gui.Menu, MenuBar, and StatusBar. /// Menu, /// /// The dialog scheme, used for Dialog, MessageBox, and other views dialog-like views. /// Dialog, /// /// The application Toplevel scheme, used for the Toplevel View. /// Toplevel, /// /// The scheme for showing errors. /// Error }