/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/cmdpal/Microsoft.CmdPal.UI.ViewModels/Commands/OpenGallerySettingsCommand.cs
20 строк
736 B
Jiří Polášek
CmdPal: Extension Gallery (#46636)
15 май 2026, 00:30
Не верифицирован
15 май 2026, 00:30
c4ff073
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using Microsoft.CommandPalette.Extensions.Toolkit; namespace Microsoft.CmdPal.UI.ViewModels.BuiltinCommands; public sealed partial class OpenGallerySettingsCommand : OpenSettingsCommand { public OpenGallerySettingsCommand() : base( settingsPageTag: "Gallery", name: Properties.Resources.builtin_open_gallery_name, glyph: "\uE719", id: "com.microsoft.cmdpal.opengallerysettings") /* #no-spell-check-line */ { Icon = IconHelpers.FromRelativePath("Assets\\Extension.svg"); } }