/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/cmdpal/ext/SamplePagesExtension/SampleDockBand.cs
22 строки
726 B
Mike Griese
CmdPal: Add a dock (#45824)
27 фев 2026, 16:24
Не верифицирован
27 фев 2026, 16:24
70bf430
Код
Авторство
О чём код?
// 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 SamplePagesExtension; #pragma warning disable SA1402 // File may only contain a single type /// <summary> /// A sample dock band with one button. /// Clicking on this button will open the palette to the samples list page /// </summary> internal sealed partial class SampleDockBand : WrappedDockItem { public SampleDockBand() : base(new SamplesListPage(), "Command Palette Samples") { } } #pragma warning restore SA1402 // File may only contain a single type