win10 uwp 读取resw资源文件
Posted Poison的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了win10 uwp 读取resw资源文件相关的知识,希望对你有一定的参考价值。
ResourceContext resourceContext = ResourceContext.GetForViewIndependentUse(); ResourceMap resourceMap = Windows.ApplicationModel.Resources.Core.ResourceManager.Current.MainResourceMap.GetSubtree("my"); // Here you load the resource you need var resourceValue = resourceMap.GetValue("Sql4Test", resourceContext); d.sql = resourceValue.ValueAsString;
ps:[my]是新建的my.resw资源文件
以上是关于win10 uwp 读取resw资源文件的主要内容,如果未能解决你的问题,请参考以下文章