namespace Terminal.Gui; /// /// Defines the style of shadow to be drawn on the right and bottom sides of the . /// public enum ShadowStyle { /// /// No shadow. /// None, /// /// A shadow that is drawn using block elements. Ideal for smaller views such as buttons. /// Opaque, /// /// A shadow that is drawn using the underlying text with a darker background. Ideal for larger views such as windows. /// Transparent }