/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/FileLocksmith/FileLocksmithUI/Helpers/ResourceLoaderInstance.cs
18 строк
613 B
Davide Giacometti
[General]Display in titlebar/tray if running as admin (#28425)
12 сен 2023, 13:11
Не верифицирован
12 сен 2023, 13:11
ebd051f
Код
Авторство
О чём код?
// 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 PowerToys.FileLocksmithUI.Helpers { internal static class ResourceLoaderInstance { internal static ResourceLoader ResourceLoader { get; private set; } static ResourceLoaderInstance() { ResourceLoader = new Microsoft.Windows.ApplicationModel.Resources.ResourceLoader("PowerToys.FileLocksmithUI.pri"); } } }