/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App/Actions/FileSystem/DeleteItemPermanentlyAction.cs
29 строк
701 B
yair100
Feature: Added access key support for shell extensions (#18400)
21 апр 2026, 19:15
Не верифицирован
21 апр 2026, 19:15
85a5b6f
Код
Авторство
О чём код?
// Copyright (c) Files Community // Licensed under the MIT License. namespace Files.App.Actions { [GeneratedRichCommand] internal sealed partial class DeleteItemPermanentlyAction : BaseDeleteAction, IAction { public string Label => Strings.DeletePermanently.GetLocalizedResource(); public string Description => Strings.DeleteItemPermanentlyDescription.GetLocalizedFormatResource(context.SelectedItems.Count); public ActionCategory Category => ActionCategory.FileSystem; public string AccessKey => "D"; public HotKey HotKey => new(Keys.Delete, KeyModifiers.Shift); public Task ExecuteAsync(object? parameter = null) { return DeleteItemsAsync(true); } } }