/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App/Actions/Global/SearchAction.cs
60 строк
1 KB
yair100
Code Quality: Add Category, ExtendedLabel, AutomationId and AccessKey to actions (#18308)
27 мар 2026, 00:40
Не верифицирован
27 мар 2026, 00:40
6ef1f17
Код
Авторство
О чём код?
// Copyright (c) Files Community // Licensed under the MIT License. namespace Files.App.Actions { [GeneratedRichCommand] internal sealed partial class SearchAction : ObservableObject, IAction { private readonly IContentPageContext context; public string Label => Strings.Search.GetLocalizedResource(); public string Description => Strings.SearchDescription.GetLocalizedResource(); public ActionCategory Category => ActionCategory.Open; public HotKey HotKey => new(Keys.F, KeyModifiers.Ctrl); public HotKey SecondHotKey => new(Keys.F3); public RichGlyph Glyph => new(themedIconStyle: "App.ThemedIcons.Omnibar.Search"); public bool IsExecutable => context.ShellPage is not null; public SearchAction() { context = Ioc.Default.GetRequiredService<IContentPageContext>(); context.PropertyChanged += Context_PropertyChanged; } public Task ExecuteAsync(object? parameter = null) { // Check if ShellPage is available before executing the action if (context.ShellPage is null) return Task.CompletedTask; _ = context.ShellPage.ToolbarViewModel.SwitchToSearchMode(); return Task.CompletedTask; } private void Context_PropertyChanged(object? sender, PropertyChangedEventArgs e) { switch (e.PropertyName) { case nameof(IContentPageContext.ShellPage): OnPropertyChanged(nameof(IsExecutable)); break; } } } }