/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/cmdpal/Microsoft.CmdPal.UI.ViewModels/MediumGridPropertiesViewModel.cs
33 строки
878 B
Michael Jolley
CmdPal: Removing Core projects (#45693)
23 фев 2026, 15:05
Не верифицирован
23 фев 2026, 15:05
138c66c
Код
Авторство
О чём код?
// 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.CmdPal.UI.ViewModels.Models; using Microsoft.CommandPalette.Extensions; namespace Microsoft.CmdPal.UI.ViewModels; public class MediumGridPropertiesViewModel : IGridPropertiesViewModel { private readonly ExtensionObject<IMediumGridLayout> _model; public bool ShowTitle { get; private set; } public bool ShowSubtitle => false; public MediumGridPropertiesViewModel(IMediumGridLayout mediumGridLayout) { _model = new(mediumGridLayout); } public void InitializeProperties() { var model = _model.Unsafe; if (model is null) { return; // throw? } ShowTitle = model.ShowTitle; } }