HighlightEventArgs.cs 351 B

12345678910
  1. namespace Terminal.Gui;
  2. /// <summary>
  3. /// Event arguments for the <see cref="View.Highlight"/> event.
  4. /// </summary>
  5. public class HighlightEventArgs : CancelEventArgs<HighlightStyle>
  6. {
  7. /// <inheritdoc />
  8. public HighlightEventArgs (ref HighlightStyle currentValue, ref HighlightStyle newValue) : base (ref currentValue, ref newValue) { }
  9. }