/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App.Controls/Sidebar/SidebarItemDropPosition.cs
24 строки
728 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 position of the item that was dropped on the sidebar item. /// </summary> public enum SidebarItemDropPosition { /// <summary> /// The item was dropped on the top of the sidebar item indicating it should be moved/inserted above this item. /// </summary> Top, /// <summary> /// The item was dropped on the bottom of the sidebar item indicating it should be moved/inserted below this item. /// </summary> Bottom, /// <summary> /// The item was dropped on the center of the sidebar item indicating it should be moved/inserted as a child of this item. /// </summary> Center } }