找不到与此错误代码关联的文本。找不到带有XXX的资源

时间:2017-07-24 14:17:43

标签: c# uwp uwp-xaml

开发UWP应用程序。在OnLaunch方法中,我添加了Resources(大约25个)

 App.Current.Resources.Add(AAA, SomeHexColor);
 App.Current.Resources.Add(BBB, SomeHexColor);
 App.Current.Resources.Add(CCC, SomeHexColor);
 App.Current.Resources.Add(DDD, SomeHexColor);

然后我在我的App.xaml中使用`em,比如ApplicationResoures

<Application.Resources>
        <ResourceDictionary>
            <ResourceDictionary.ThemeDictionaries>
                <ResourceDictionary x:Key="Default">
                    <SolidColorBrush x:Key="AppBarButtonBackgroundPrimaryColor" Color="{StaticResource AAA}" />
                    <SolidColorBrush x:Key="AppBarButtonForegroundPrimaryColor" Color="{StaticResource BBB}" />
                    <SolidColorBrush x:Key="AppBarButtonForegroundPointerOverPrimaryColor" Color="{StaticResource CCC}" />

我有时会收到像

这样的崩溃报告

找不到与此错误代码关联的文本。找不到具有名称/密钥CCC的资源[行:0位置:0]

但是我无法在开发环境中重现此崩溃?

我做错了什么?

0 个答案:

没有答案