mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2026-01-02 01:03:29 +01:00
WIP: Refactored Mouse stuff.
This commit is contained in:
12
Terminal.Gui/Input/Keyboard/KeystrokeNavigatorEventArgs.cs
Normal file
12
Terminal.Gui/Input/Keyboard/KeystrokeNavigatorEventArgs.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace Terminal.Gui;
|
||||
|
||||
/// <summary>Event arguments for the <see cref="CollectionNavigatorBase.SearchStringChanged"/> event.</summary>
|
||||
public class KeystrokeNavigatorEventArgs : EventArgs
|
||||
{
|
||||
/// <summary>Initializes a new instance of <see cref="KeystrokeNavigatorEventArgs"/></summary>
|
||||
/// <param name="searchString">The current <see cref="SearchString"/>.</param>
|
||||
public KeystrokeNavigatorEventArgs (string searchString) { SearchString = searchString; }
|
||||
|
||||
/// <summary>he current <see cref="SearchString"/>.</summary>
|
||||
public string SearchString { get; }
|
||||
}
|
||||
Reference in New Issue
Block a user