TextBox, PropertyChangeHandler
This commit is contained in:
@@ -1,12 +1,13 @@
|
||||
using DeclarativeProperty;
|
||||
using FileTime.App.FrequencyNavigation.ViewModels;
|
||||
|
||||
namespace FileTime.App.FrequencyNavigation.Services;
|
||||
|
||||
public interface IFrequencyNavigationService
|
||||
{
|
||||
IObservable<bool> ShowWindow { get; }
|
||||
IDeclarativeProperty<bool> ShowWindow { get; }
|
||||
IFrequencyNavigationViewModel? CurrentModal { get; }
|
||||
void OpenNavigationWindow();
|
||||
Task OpenNavigationWindow();
|
||||
void CloseNavigationWindow();
|
||||
IList<string> GetMatchingContainers(string searchText);
|
||||
}
|
||||
@@ -1,12 +1,14 @@
|
||||
using DeclarativeProperty;
|
||||
using FileTime.App.Core.Models;
|
||||
using FileTime.App.Core.ViewModels;
|
||||
using FileTime.App.FuzzyPanel;
|
||||
using GeneralInputKey;
|
||||
|
||||
namespace FileTime.App.FrequencyNavigation.ViewModels;
|
||||
|
||||
public interface IFrequencyNavigationViewModel : IFuzzyPanelViewModel<string>, IModalViewModel
|
||||
{
|
||||
IObservable<bool> ShowWindow { get; }
|
||||
IDeclarativeProperty<bool> ShowWindow { get; }
|
||||
void Close();
|
||||
Task<bool> HandleKeyUp(GeneralKeyEventArgs keyEventArgs);
|
||||
}
|
||||
Reference in New Issue
Block a user