我有以下问题,很容易重现:
我正在创建一个使用来自另一个文件的资源的xaml应用程序。可行的方法是创建一个MergedDictionaries-tag来合并本地和全局资源,如下所示:

<Window>
<Window.Resources>
    <ResourceDictionary>
        <ResourceDictionary.MergedDictionaries>
            <ResourceDictionary Source="path.to.xaml.file"/>
            <ResourceDictionary>
                <Style TargetType="{x:Type Border}" x:Key="TypeBlock">

                </Style>
                <Style TargetType="{x:Type Border}" x:Key="SetBlock">

                </Style>
            </ResourceDictionary>
        </ResourceDictionary.MergedDictionaries>
    </ResourceDictionary>
</Window.Resources>
....
</Window>

如果您运行以下代码,它将使其崩溃:
Item has already been added. Key in dictionary: 'System.Windows.Controls.Border'  Key being added: 'System.Windows.Controls.Border'

如果我们删除MergedDictionaries-tag,代码将按预期运行:
<Window>
<Window.Resources>
    <Style TargetType="{x:Type Border}" x:Key="TypeBlock">

    </Style>
    <Style TargetType="{x:Type Border}" x:Key="SetBlock">

    </Style>
</Window.Resources>
</Window>

我不明白为什么我们在使用合并资源时会引发异常。
当然,该修复程序目前非常容易(将资源移至较低级别)。很高兴知道这是否是“正常”行为...

最佳答案

如果您的资源不在单独的文件中,则它们不应成为合并词典的一部分。像这样将它们移到外面:

<Window.Resources>
    <ResourceDictionary>
        <ResourceDictionary.MergedDictionaries>
            <ResourceDictionary Source="path.to.xaml.file"/>
        </ResourceDictionary.MergedDictionaries>

        <Style TargetType="{x:Type Border}" x:Key="TypeBlock">

        </Style>
        <Style TargetType="{x:Type Border}" x:Key="SetBlock">

        </Style>
    </ResourceDictionary>
</Window.Resources>

就是说,错误消息有点误导,可能是XAML编译器中的错误导致的。

关于wpf - XAML-MergedDictionaries抛出XmlParseException “item has already been added”。为什么?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2040804/

10-16 09:21