加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

Caliburn笔记-依赖注入容器(wpf框架)

发布时间:2020-12-13 20:28:44 所属栏目:百科 来源:网络整理
导读:参考与此http://caliburn.codeplex.com/wikipage?title=Auto-Registering%20ComponentsreferringTitle=Documentation 此为基础,看了没用,不看不行…了解下注册流程. 注册组件,差不多离不开这几种模式 手动注册 元数据标签注册 外部dll加载注册 1.内置服务则

参考与此http://caliburn.codeplex.com/wikipage?title=Auto-Registering%20Components&referringTitle=Documentation

此为基础,看了没用,不看不行…了解下注册流程.


注册组件,差不多离不开这几种模式

  1. 手动注册
  2. 元数据标签注册
  3. 外部dll加载注册

1.内置服务则用手动注册.

2.挂元数据标签,如下

[PerRequest(typeof(IHomePresenter))]
public class HomePresenter : Presenter,IHomePresenter
{
}


以前不是推荐此种做法的,标签会产生框架耦合,但框架用都用了,内置demo使用此方法最多,之前用的是手动注册,框架会去dll中寻找挂此标签的对象然后自动注册.

3.外部dll加载

重写CaliburnApplication的SelectAssemblies方法

protected override System.Reflection.Assembly[] SelectAssemblies()
{
    return new[] { Assembly.GetEntryAssembly(),typeof(Caliburn.WPF.ApplicationFramework.Bind).Assembly};
}
private void InspectAssembly(Assembly assembly,ICollection<ComponentInfo> componentList,ICollection<Type> configs)
{
    var types = assembly.GetExportedTypes();

    foreach (var type in types)
    {
        foreach (var attribute in type.GetCustomAttributes(true).OfType<RegisterAttribute>())
            componentList.Add(attribute.GetComponentInfo(type));
    }

    foreach (var type in types)
    {
        if(_configType.IsAssignableFrom(type) && !type.IsAbstract)
            configs.Add(type);
    }
}


总的来说,我们只要加载dll,挂上标签就可以自动注册了

内置服务+自定义服务注册好以后,接下来的任务就是注册实例.即组件的生命周期状况.内置都为Singleton

/// <summary>
/// The lifetime of a Caliburn component.
/// </summary>
public enum ComponentLifetime
{
    /// <summary>
    /// One instance per application.
    /// </summary>
    Singleton,/// <summary>
    /// A new instance is created on each request.
    /// </summary>
    PerRequest,/// <summary>
    /// A new instance is created per custom lifetime rules.
    /// </summary>
    Custom
}


可以通过重写ConfigureWith方法,使用第三方容器来注册服务,当然其内置也提供了一个较为简单的容器

新版本可能会更新,所以不去研究它了

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读