TextBox, PropertyChangeHandler

This commit is contained in:
2023-08-11 21:51:44 +02:00
parent e989a65e81
commit 1fde0df2d6
81 changed files with 1539 additions and 390 deletions

View File

@@ -1,12 +1,14 @@
using FileTime.App.Core.Models;
using DeclarativeProperty;
using FileTime.App.Core.Models;
using FileTime.App.Core.ViewModels;
using FileTime.App.FuzzyPanel;
using GeneralInputKey;
namespace FileTime.App.CommandPalette.ViewModels;
public interface ICommandPaletteViewModel : IFuzzyPanelViewModel<ICommandPaletteEntryViewModel>, IModalViewModel
{
IObservable<bool> ShowWindow { get; }
IDeclarativeProperty<bool> ShowWindow { get; }
void Close();
Task<bool> HandleKeyUp(GeneralKeyEventArgs keyEventArgs);
}