/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App.Controls/Toolbar/Toolbar.Constants.cs
33 строки
1 KB
Yair
Code Quality: Ran code cleanup (#17307)
25 июл 2025, 03:57
Не верифицирован
25 июл 2025, 03:57
4558bc2
Код
Авторство
О чём код?
// Copyright (c) Files Community // Licensed under the MIT License. namespace Files.App.Controls { // TemplateParts [TemplatePart(Name = ToolbarItemsRepeaterPartName, Type = typeof(ItemsRepeater))] // VisualStates [TemplateVisualState(Name = OverflowOnStateName, GroupName = CommonStatesGroupName)] [TemplateVisualState(Name = OverflowOffStateName, GroupName = CommonStatesGroupName)] public partial class Toolbar : Control { // TemplatePart Names internal const string ToolbarItemsRepeaterPartName = "PART_ItemsRepeater"; // VisualState Group Names internal const string CommonStatesGroupName = "OverflowStates"; // VisualState Names internal const string OverflowOnStateName = "OverflowOn"; internal const string OverflowOffStateName = "OverflowOff"; // ResourceDictionary Keys internal const string SmallMinWidthResourceKey = "ToolbarButtonSmallMinWidth"; internal const string SmallMinHeightResourceKey = "ToolbarButtonSmallMinHeight"; internal const string MediumMinWidthResourceKey = "ToolbarButtonMediumMinWidth"; internal const string MediumMinHeightResourceKey = "ToolbarButtonMediumMinHeight"; internal const string LargeMinWidthResourceKey = "ToolbarButtonLargeMinWidth"; internal const string LargeMinHeightResourceKey = "ToolbarButtonLargeMinHeight"; } }