FuzzyPanel
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
using Avalonia.Input;
|
||||
|
||||
namespace FileTime.App.FuzzyPanel;
|
||||
|
||||
public interface IFuzzyPanelViewModel<TItem> where TItem : class
|
||||
{
|
||||
List<TItem> FilteredMatches { get; }
|
||||
TItem? SelectedItem { get; }
|
||||
string SearchText { get; set; }
|
||||
void UpdateFilteredMatches();
|
||||
Task<bool> HandleKeyDown(KeyEventArgs keyEventArgs);
|
||||
}
|
||||
Reference in New Issue
Block a user