0

我有一个带有 generic.xaml 文件的 silverlight 应用程序。在通用文件中,我想合并 MEF 从其他 DLL 导入的字典。

我怎样才能做到这一点 ?(一个例子会很好)

4

2 回答 2

0

我在加载一个特定模块时执行此操作,并且效果很好。

在模块的构造函数中,添加对将加载资源的方法的调用 - 这很有效,因为通过这种方式,我将收到缺少资源的异常通知:

 addResourceDictionaries();



 protected void addResourceDictionaries()
    {
        LoadResource ( new Uri("/NAME_OF_DLL;component/assets/name_and_path_of_xaml.xaml", UriKind.Relative));
    }

private void LoadResource(Uri uri)
    {
        var info = System.Windows.Application.GetResourceStream(uri);
        string xaml;
        using (var reader = new System.IO.StreamReader(info.Stream))
        {
            xaml = reader.ReadToEnd();
        }

        ResourceDictionary result = System.Windows.Markup.XamlReader.Load(xaml) as ResourceDictionary;

        if (result != null)
        {
            System.Windows.Application.Current.Resources.MergedDictionaries.Add(result);
        }
    }
于 2012-01-22T19:22:58.887 回答
0

我使用以下内容:

使用 mef 导出我的资源字典(只需将 .cs 文件添加到您的资源字典)

[ExportResourceDictionary]
public partial class MyResourcen : ResourceDictionary
{
    public MyResourcen()
    {
        InitializeComponent();
    }
}

将新的类文件添加到您的 xaml

<ResourceDictionary x:Class="Test.Resourcen.MyResourcen">

导入所需的资源,例如 app.xaml

[ImportMany("Resourcen", typeof(ResourceDictionary), AllowRecomposition = true)]
private IEnumerable<ResourceDictionary> ImportResourcen { get; set; }

    #region Implementation of IPartImportsSatisfiedNotification

    public void OnImportsSatisfied()
    {
        foreach (var dic in ImportResourcen)
        {
            this.Resources.MergedDictionaries.Add(dic);
        }
    }

    #endregion

至少这里是导出属性

[MetadataAttribute]
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
public class ExportResourceDictionaryAttribute : ExportAttribute
{
    public ExportResourceDictionaryAttribute() : base("Resourcen", typeof(ResourceDictionary))
    {

    }
}
于 2012-01-23T06:57:26.347 回答