/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/keyboardmanager/KeyboardManagerEditorUI/Controls/KeyChangedEventArgs.cs
24 строки
653 B
Niels Laute
[KBM] Manual key selection — code review fixes (#46377)
09 апр 2026, 17:45
Не верифицирован
09 апр 2026, 17:45
de6a609
Код
Авторство
О чём код?
// 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. using System; namespace KeyboardManagerEditorUI.Controls { public class KeyChangedEventArgs : EventArgs { public string OldKeyName { get; } public string NewKeyName { get; } public int NewKeyCode { get; } public KeyChangedEventArgs(string oldKeyName, string newKeyName, int newKeyCode) { OldKeyName = oldKeyName; NewKeyName = newKeyName; NewKeyCode = newKeyCode; } } }