SliderAttributes.cs 495 B

1234567891011121314
  1. namespace Terminal.Gui;
  2. /// <summary><see cref="Slider{T}"/> Legend Style</summary>
  3. public class SliderAttributes
  4. {
  5. /// <summary>Attribute for the Legends Container.</summary>
  6. public Attribute? EmptyAttribute { get; set; }
  7. /// <summary>Attribute for when the respective Option is NOT Set.</summary>
  8. public Attribute? NormalAttribute { get; set; }
  9. /// <summary>Attribute for when the respective Option is Set.</summary>
  10. public Attribute? SetAttribute { get; set; }
  11. }