如何在WP8.1应用程序中的ResourceDictionary中定义字符串?
我已添加
xmlns:sys="clr-namespace:System;assembly=mscorlib"
到我的ResourceDictionary,但Visual Studio 2013说没有找到“sys:String”。
我该如何解决?
答案 0 :(得分:1)
问题可能是因为您正在针对WP8.1 运行时应用。正如您所描述的方法仍将在WP8.1 Silverlight 中工作,在运行时中,您可以在xaml中声明内置类型,如下所示:
<x:String x:Key="myKey">Text</x:String>
有关差异以及将 Silverlight 应用移植到运行时的更多信息,您会发现here at MSDN。