12345678910 |
- namespace Terminal.Gui;
- /// <summary>
- /// Event arguments for the <see cref="View.Highlight"/> event.
- /// </summary>
- public class HighlightEventArgs : CancelEventArgs<HighlightStyle>
- {
- /// <inheritdoc />
- public HighlightEventArgs (ref HighlightStyle currentValue, ref HighlightStyle newValue) : base (ref currentValue, ref newValue) { }
- }
|