/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/ShortcutGuide/ShortcutGuide.Ui/Helpers/ResourceLoaderInstance.cs
27 строк
942 B
Noraa Junker
Shortcut Guide V2 (#40834)
21 май 2026, 18:27
Не верифицирован
21 май 2026, 18:27
9699d8a
Код
Авторство
О чём код?
// 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 ShortcutGuide.Helpers { internal static class ResourceLoaderInstance { /// <summary> /// Gets the resource loader for the Shortcut Guide module. /// </summary> internal static ResourceLoader ResourceLoader { get; private set; } /// <summary> /// Gets the resource loader for the Settings module. /// </summary> internal static ResourceLoader SettingsResourceLoader { get; private set; } static ResourceLoaderInstance() { ResourceLoader = new ResourceLoader("PowerToys.ShortcutGuide.pri"); SettingsResourceLoader = new ResourceLoader("PowerToys.Settings.pri"); } } }