如何更改Microsoft架构版本

时间:2017-04-25 12:02:08

标签: wpf xml-namespaces

到目前为止,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.是否有添加此命名空间的选项?

  1. 如何更改默认版本?因此,当我创建新的资源,页面等时,将使用新的命名空间。

1 个答案:

答案 0 :(得分:1)

StringSystem程序集的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>