到目前为止,xlmns:x对我来说似乎并不重要,但现在我想创建一个带有“x:String”类型数组的ResourceDictionary。 默认的xlmns:x命名空间引用版本2006,但不支持字符串。自2009年以来,它是supported。所以我喜欢使用更新的版本。 完成它需要哪些步骤?
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2009/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:HMBFipsReminderUI">
<x:Array x:Key="DataGrid_SampleItemSource" Type="x:String">
</x:Array>
</ResourceDictionary>
重命名没有帮助,因为visual studio找不到命名空间。 1.是否有添加此命名空间的选项?
答案 0 :(得分:1)
String
是System
程序集的mscorlib
命名空间中的一个类型:
xmlns:s="clr-namespace:System;assembly=mscorlib"
试试这个:
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:HMBFipsReminderUI"
xmlns:s="clr-namespace:System;assembly=mscorlib">
<x:Array x:Key="DataGrid_SampleItemSource" Type="{x:Type s:String}">
<s:String>a</s:String>
<s:String>b</s:String>
<s:String>c</s:String>
</x:Array>
</ResourceDictionary>