在WPF中引用dll中的主题

时间:2010-08-12 11:48:48

标签: wpf xaml wpf-controls app.xaml

我正在使用opensource wpf TreeListView控件。该控件是一个库项目,其中包含一些主题文件夹,其中包含一些xaml主题文件。在我的wpf项目中,我有一个对控件dll的引用,我想知道如何在app.xaml中引用dll主题。我尝试过做这样的事情,但它抛出异常,说无法找到treelistview程序集

<Application.Resources>
    <ResourceDictionary>
        <ResourceDictionary.MergedDictionaries>           
            <ResourceDictionary Source="/PresentationFramework.Aero;component/themes/Aero.NormalColor.xaml" />
            <ResourceDictionary Source="/TreeListView;component/themes/Aero.NormalColor.xaml" />
    </ResourceDictionary>
</Application.Resources>

目前我必须在本地复制我的wpf项目中的所有主题文件,以使其像这样工作。

<Application.Resources>
    <ResourceDictionary>
        <ResourceDictionary.MergedDictionaries>               
            <ResourceDictionary Source="/PresentationFramework.Aero;component/themes/Aero.NormalColor.xaml" />
         <ResourceDictionary Source="themes/aero.normalcolor.xaml" />
        </ResourceDictionary.MergedDictionaries>
    </ResourceDictionary>
</Application.Resources>

有没有办法直接在TreeListView dll中引用主题文件,比如引用默认主题。

等待 纳贝尔

1 个答案:

答案 0 :(得分:1)

我自己弄清楚,我使用了错误的汇编文件名。