/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/cmdpal/ext/SamplePagesExtension/Pages/SampleGalleryListPage.cs
59 строк
2 KB
Jiří Polášek
CmdPal: Fix grid views (#43991)
01 дек 2025, 04:32
Не верифицирован
01 дек 2025, 04:32
4d3c223
Код
Авторство
О чём код?
// 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; using Microsoft.CommandPalette.Extensions.Toolkit; namespace SamplePagesExtension; internal sealed partial class SampleGalleryListPage : ListPage { public override IListItem[] GetItems() { return [ new ListItem(new NoOpCommand()) { Title = "Sample Title", Subtitle = "I don't do anything", Icon = IconHelpers.FromRelativePath("Assets/Images/RedRectangle.png"), }, new ListItem(new NoOpCommand()) { Title = "Another Title", Subtitle = "I don't do anything", Icon = IconHelpers.FromRelativePath("Assets/Images/Swirls.png"), }, new ListItem(new NoOpCommand()) { Title = "More Titles", Subtitle = "I don't do anything", Icon = IconHelpers.FromRelativePath("Assets/Images/Win-Digital.png"), }, new ListItem(new NoOpCommand()) { Title = "Stop With The Titles", Subtitle = "I don't do anything", Icon = IconHelpers.FromRelativePath("Assets/Images/RedRectangle.png"), }, new ListItem(new NoOpCommand()) { Title = "Another Title", Subtitle = "I don't do anything", Icon = IconHelpers.FromRelativePath("Assets/Images/Space.png"), }, new ListItem(new NoOpCommand()) { Title = "More Titles", Subtitle = "I don't do anything", Icon = IconHelpers.FromRelativePath("Assets/Images/Swirls.png"), }, new ListItem(new NoOpCommand()) { Title = "Stop With The Titles", Subtitle = "I don't do anything", Icon = IconHelpers.FromRelativePath("Assets/Images/Win-Digital.png"), }, ]; } }