namespace Terminal.Gui;
/// Event arguments for the event.
public class KeystrokeNavigatorEventArgs : EventArgs
{
/// Initializes a new instance of
/// The current .
public KeystrokeNavigatorEventArgs (string searchString) { SearchString = searchString; }
/// he current .
public string SearchString { get; }
}