我的应用程序本地化有问题.我有文件Resources.resw与其中的字符串“noResults.Text”(它以.Text结尾,因为我在xaml中使用它为textblock(x:Uid))问题是我想在代码后面使用相同的字符串( C#)我怎么可以访问它?我已经尝试过这样的事情:
resourceLoader.GetString("noResults"); resourceLoader.GetString("noResults.Text");
但没有一项工作
提前致谢 :)
做这样的事情:
原文链接:https://www.f2er.com/windows/363750.htmlvar loader = new Windows.ApplicationModel.Resources.ResourceLoader(); string result = loader.GetString("noResults/text");
请注意,在资源中,如果使用“noResults.text”,则不要将另一个字符串定义为“noResults”(无扩展名).