/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/keyboardmanager/KeyboardManagerEditorUI/Helpers/ResourceHelper.cs
19 строк
583 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 Microsoft.Windows.ApplicationModel.Resources; namespace KeyboardManagerEditorUI.Helpers { public static class ResourceHelper { private static ResourceLoader? _resourceLoader; public static string GetString(string resourceKey) { _resourceLoader ??= new ResourceLoader(); return _resourceLoader.GetString(resourceKey); } } }