/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App.Controls/Toolbar/Primitives/OverflowBehaviors.cs
23 строки
454 B
Yair
Code Quality: Updated license header
31 дек 2024, 05:03
31 дек 2024, 05:03
8436c6d
Код
Авторство
О чём код?
// Copyright (c) Files Community // Licensed under the MIT License. namespace Files.App.Controls.Primitives { public enum OverflowBehaviors { /// <summary> /// Item will move to the overflow menu if space available is too small /// </summary> Auto, /// <summary> /// Item will always appear in the overflow menu /// </summary> Always, /// <summary> /// Item will never move to the overflow menu /// </summary> Never, } }