从不同的程序集加载合并的ResourceDictionary失败

时间:2011-12-12 14:16:28

标签: c# .net wpf xaml

我已将所有应用程序的ResourceDictionaries放入一个单独的程序集中,并将它们合并为一个ResourceDictionary,我希望将其作为资源包含在我的应用程序中:

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    <ResourceDictionary.MergedDictionaries>
        <ResourceDictionary Source="InputStyles.xaml"/>
        <ResourceDictionary Source="DataGridStyles.xaml"/>
        <ResourceDictionary Source="ComboboxStyles.xaml"/>
        <ResourceDictionary Source="CheckboxStyles.xaml"/>
        <ResourceDictionary Source="TabControlStyles.xaml"/>
        <ResourceDictionary Source="ButtonStyles.xaml"/>
    </ResourceDictionary.MergedDictionaries>
</ResourceDictionary>

声明资源:

<Window.Resources>
    <ResourceDictionary Source="pack://application:,,,/StyleAssembly;component/Styles.xaml"/>
</Window.Resources>

在VS中查看设计器所有控件都显示文件中的样式,但是当我尝试启动应用程序时,我收到以下错误:

“找不到资源'inputstyles.xaml'。”

所有文件的构建操作都设置为“页面”,两个项目的构建都成功。我做错了什么?

4 个答案:

答案 0 :(得分:7)

build action should be defined as Resource or Content如果你愿意做一些腿部工作。

  

您的资源必须作为资源定义为项目的一部分   建立行动。如果在项目中包含资源.xaml文件   资源,您不需要将资源文件复制到输出   目录,资源已经包含在编译中   应用。您也可以使用内容构建操作,但必须这样做   将文件复制到输出目录并部署资源   文件与可执行文件的路径关系相同。

答案 1 :(得分:3)

从我的观察。将资源dictonary构建样式设置为Resource可能会导致奇怪的错误(我突然开始遇到运行时错误Cannot create X,其中X是我的资源字典中引用的用户定义类型)。

我建议将构建样式保留在Page。从我所看到的,这应该可以正常工作。

答案 2 :(得分:2)

Pack URIs in WPF&amp; Merged Resource Dictionaries

构建操作应为资源

答案 3 :(得分:1)

  

对于这两种情况,请参阅this solution 当您知道外部时   Assembly结构(文件名等)和当你不知道而只是想要   迭代Assembly的外部ResourceDictionary(s)或   UserControls

<强> Both XMAL and C# solution.

<强> 更新

XAML方式:If you know the URI of the resource in an Assembly, then load it directly. Transform same syntax in XAML

ResourceDictionary dictionary = new ResourceDictionary();
 dictionary.Source = new Uri("pack://application:,,,/WpfControlLibrary1;Component/RD1.xaml", UriKind.Absolute);
 foreach (var item in dictionary.Values)
 {
    //operations
 }

C#方式:If you only know the Assambly and don't know the Resources in it

public ResourceDictionary GetResourceDictionary(string assemblyName)
{
    Assembly asm = Assembly.LoadFrom(assemblyName);
    Stream stream = asm.GetManifestResourceStream(asm.GetName().Name + ".g.resources");            
    using (ResourceReader reader = new ResourceReader(stream))
    {
        foreach (DictionaryEntry entry in reader)
        {
            var readStream = entry.Value as Stream;
            Baml2006Reader bamlReader = new Baml2006Reader(readStream);
            var loadedObject = System.Windows.Markup.XamlReader.Load(bamlReader);
            if (loadedObject is ResourceDictionary)
            {
                return loadedObject as ResourceDictionary;
            }
        }
    }
    return null;
}