/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App.Controls/ThemedIcon/Data/ThemedIconToggleBehaviors.cs
26 строк
523 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 { /// <summary> /// Defines IconTypes for <see cref="ThemedIcon"/>. /// </summary> public enum ToggleBehaviors { /// <summary> /// Auto enables the ThemedIcon to listen to owner control states. /// </summary> Auto, /// <summary> /// On will always use the ThemedIcon's Toggle state /// </summary> On, /// <summary> /// Off will not use the ThemedIcon's Toggle state /// </summary> Off, } }