/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App.Controls/Sidebar/SidebarDisplayMode.cs
24 строки
612 B
Marcel W.
Feature: Moved Settings button to the Sidebar (#16911)
16 мар 2025, 18:16
Не верифицирован
16 мар 2025, 18:16
26a1f7d
Код
Авторство
О чём код?
// Copyright (c) Files Community // Licensed under the MIT License. namespace Files.App.Controls { /// <summary> /// The display mode of the <see cref="SidebarView"/> /// </summary> public enum SidebarDisplayMode { /// <summary> /// The sidebar is hidden and moves in from the side when the <see cref="SidebarView.IsPaneOpen"/> is set to <code>true</code>. /// </summary> Minimal, /// <summary> /// Only the icons of the top most sections are visible. /// </summary> Compact, /// <summary> /// The sidebar is expanded and items can also be expanded. /// </summary> Expanded } }