WIP: Refactored Mouse stuff.

This commit is contained in:
Tig
2024-12-05 11:00:44 -07:00
parent a7d53928c1
commit 76c0ab81d8
21 changed files with 284 additions and 75 deletions

View 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; }
}