ShadowStyle.cs 589 B

12345678910111213141516171819202122
  1. namespace Terminal.Gui;
  2. /// <summary>
  3. /// Defines the style of shadow to be drawn on the right and bottom sides of the <see cref="View"/>.
  4. /// </summary>
  5. public enum ShadowStyle
  6. {
  7. /// <summary>
  8. /// No shadow.
  9. /// </summary>
  10. None,
  11. /// <summary>
  12. /// A shadow that is drawn using block elements. Ideal for smaller views such as buttons.
  13. /// </summary>
  14. Opaque,
  15. /// <summary>
  16. /// A shadow that is drawn using the underlying text with a darker background. Ideal for larger views such as windows.
  17. /// </summary>
  18. Transparent
  19. }