如何以编程方式从App.xaml访问资源字符串?

时间:2014-10-25 00:48:09

标签: c# windows-store-apps winrt-xaml resourcedictionary app.xaml

我想从App.xaml中的代码中访问一些字符串,如:

<Application.Resources>
    <ai:TelemetryContext x:Key="ApplicationInsightsBootstrapper" xmlns:ai="using:Microsoft.ApplicationInsights"/>
    <ResourceDictionary x:Key="rd">
        <ResourceDictionary.MergedDictionaries>
            <ResourceDictionary Source="GlobalStylesResourceDictionary.xaml"/>
        </ResourceDictionary.MergedDictionaries>
        <!-- Application-specific resources. -->
        <x:String x:Key="AppName">Platypus</x:String>
        <x:String x:Key="BingMapsNamespace">http://schemas.microsoft.com/search/local/ws/rest/v1</x:String>
    </ResourceDictionary>
</Application.Resources>

我想以编程方式获取这些值,因此我编写了这个实用程序函数:

internal static String GetResourceString(String keyStr)
{
    var resldr = new Windows.ApplicationModel.Resources.ResourceLoader();
    return resldr.GetString(keyStr);
}

但如果失败了,&#34; 类型&#39; System.Exception&#39;的第一次机会异常。发生在Platypus.exe WinRT信息:未找到ResourceMap。&#34;

我以为我找到了问题here的解决方案,据说这样做的方式已被弃用,我应该这样做:

internal static String GetResourceString(String keyStr)
{
    try
    {
        //var resldr = new Windows.ApplicationModel.Resources.ResourceLoader();
        //return resldr.GetString(keyStr);
        var resldr = ResourceLoader.GetForCurrentView();
        return resldr.GetString(keyStr);
    }
    catch (Exception ex)
    {
        Debug.WriteLine("Something wrong with the keyStr? Exception in GetResourceString(): {0}", ex.Message); 
    }
    return String.Empty;
}

但这也不起作用;我得到了相同的旧的&#34; WinRT信息:未找到ResourceMap。&#34;使用此代码。

我通过的arg是有效的:

String bmn = GetResourceString("BingMapsNamespace");

那么该怎么回事?

更新

使用App.xaml.cs而不是它的表兄弟可能同样(或更好,实际上,因为它可能会起作用):

public static string BingMapsNamespace { get; set; }
. . .
BingMapsNamespace = "http://schemas.microsoft.com/search/local/ws/rest/v1";

然后从其他地方访问它:

String bmn = App.BingMapsNamespace;

后来:是的,确实有效。我将另一个标记为正确,因为它显然适用于某些人。

1 个答案:

答案 0 :(得分:10)

这对我来说很好用:

<Application.Resources>
    <x:String x:Key="AppName">My App Name</x:String>
</Application.Resources>

然后在代码中:

string text = (string)App.Current.Resources["AppName"];

我不知道这是否是正确的方式,但这很方便。 :)