在我的 App.xaml 代码中,我有以下代码:
<Application x:Class="PcgTools.App"
...
<Application.Resources>
<ResourceDictionary>
...
<res:Strings x:FactoryMethod="res:StringResourceHelper.GetStringResources"
x:Key="LocStrings"/>
</ResourceDictionary>
</Application.Resources>
</Application>
在使用 FactoryMethod 或 Attribute 构造之前,我从 VS2012 编译器得到一个错误。但现在我得到了错误:这里不允许使用 Xaml2009 语言构造。
如何解决这个问题?