KeystrokeNavigatorEventArgs.cs 580 B

123456789101112
  1. namespace Terminal.Gui;
  2. /// <summary>Event arguments for the <see cref="CollectionNavigatorBase.SearchStringChanged"/> event.</summary>
  3. public class KeystrokeNavigatorEventArgs : EventArgs
  4. {
  5. /// <summary>Initializes a new instance of <see cref="KeystrokeNavigatorEventArgs"/></summary>
  6. /// <param name="searchString">The current <see cref="SearchString"/>.</param>
  7. public KeystrokeNavigatorEventArgs (string searchString) { SearchString = searchString; }
  8. /// <summary>he current <see cref="SearchString"/>.</summary>
  9. public string SearchString { get; }
  10. }