/
Logris
/
FileWatchService
Обзор
Документация
Войти
/
Logris
/
FileWatchService
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
AdminTools/Service/MiracleService/NotifyIcon/Interop/IconState.cs
22 строки
480 B
Logrus
first commit
15 мар 2025, 14:15
15 мар 2025, 14:15
6de831b
Код
Авторство
О чём код?
namespace MiracleService.Interop { /// <summary> /// The state of the icon - can be set to /// hide the icon. /// </summary> public enum IconState { /// <summary> /// The icon is visible. /// </summary> Visible = 0x00, /// <summary> /// Hide the icon. /// </summary> Hidden = 0x01, // The icon is shared - currently not supported, thus commented out. //Shared = 0x02 } }