/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/powerdisplay/PowerDisplay.Models/MouseWheelControlMode.cs
26 строк
771 B
moooyo
PowerDisplay: Adjust brightness by scrolling over the tray icon (#49446)
31 июл 2026, 11:21
Не верифицирован
31 июл 2026, 11:21
8f63402
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. namespace PowerDisplay.Models; /// <summary> /// Defines how PowerDisplay handles mouse-wheel input. /// </summary> public enum MouseWheelControlMode { /// <summary> /// Disables tray-icon and flyout-slider mouse-wheel adjustment. /// </summary> Disabled = 0, /// <summary> /// Enables flyout-slider adjustment and targets the primary display from the tray icon. /// </summary> PrimaryDisplay = 1, /// <summary> /// Enables flyout-slider adjustment and targets all visible displays from the tray icon. /// </summary> AllDisplays = 2, }