TextBox, PropertyChangeHandler
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
using DeclarativeProperty;
|
||||
using FileTime.App.CommandPalette.Models;
|
||||
using FileTime.App.CommandPalette.ViewModels;
|
||||
|
||||
@@ -5,7 +6,7 @@ namespace FileTime.App.CommandPalette.Services;
|
||||
|
||||
public interface ICommandPaletteService
|
||||
{
|
||||
IObservable<bool> ShowWindow { get; }
|
||||
IDeclarativeProperty<bool> ShowWindow { get; }
|
||||
void OpenCommandPalette();
|
||||
void CloseCommandPalette();
|
||||
IReadOnlyList<ICommandPaletteEntry> GetCommands();
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user