zoukankan      html  css  js  c++  java
  • Caliburn笔记Presenter(wpf框架)

        又是MVP...

    先来看下图,MetadataContainer已经知道是元数据的功能了。PresenterBase继承了IExtendedPresenter接口,所以重点看这个接口.

    参考于此:http://caliburn.codeplex.com/wikipage?title=IPresenter%20Component%20Model&referringTitle=Documentation

    image

    IExtendedPresenter接口继承了一系列的接口

    image

    IPresenter包含了一组基本初始化的方法

    image

    IPresenterNode
    IPresenterNode inherits from IPresenter and adds one additional property: Parent. This allows the implementor to communicate directly with its immediate parent. This is most helpful in shutdown scenarios. An example of this can be seen by examining the PresenterBase.Close method.
    ILifecycleNotifier
    Classes which implement this interface guarantee that they will fire events related to their lifecycle. These events correspond directly to the methods defined by IPresenter. The events are: Initialized, WasShutdown, Activated, Deactivated.
    IViewAware
    This interface should be implemented when explicit knowledge of the view is needed. If implemented, when the view's Loaded event is fired, the IViewWare.ViewLoaded method will be called. It will be passed the view instance and the context that the view pertains to (because it is possible to have multiple view over the same model).
    IPresenterHost
    This interface inherits from IPresenter and is implemented by classes which which to manage the lifecycle of other presenter(s). This basically encompasses the ScreenConductor and ScreenCollection roles. The IPresenterHost has a collection of the IPresenters which it is managing called "Presenters" It also adds two important methods:

    以下为PresenterBase抽象类代码

    1.定义IPresenter抽象方法

    #region abstract method
    
    /// <summary>
    /// Initializes this instance.
    /// </summary>
    public abstract void Initialize();
    
    /// <summary>
    /// Shuts down this instance.
    /// </summary>
    public abstract void Shutdown();
    
    /// <summary>
    /// Activates this instance.
    /// </summary>
    public abstract void Activate();
    
    /// <summary>
    /// Deactivates this instance.
    /// </summary>
    public abstract void Deactivate();
    
    #endregion


    2.定义ILifecycleNotifier接口事件

    image

    #region Event
    
    /// <summary>
    /// Occurs when [initialized].
    /// </summary>
    public event EventHandler Initialized = delegate { };
    
    /// <summary>
    /// Occurs when [was shutdown].
    /// </summary>
    public event EventHandler WasShutdown = delegate { };
    
    /// <summary>
    /// Occurs when [activated].
    /// </summary>
    public event EventHandler Activated = delegate { };
    
    /// <summary>
    /// Occurs when [deactivated].
    /// </summary>
    public event EventHandler Deactivated = delegate { };
    
    /// <summary>
    /// Called when [initialize].
    /// </summary>
    protected virtual void OnInitialize()
    {
        Initialized(this, EventArgs.Empty);
    }
    
    /// <summary>
    /// Called when [shutdown].
    /// </summary>
    protected virtual void OnShutdown()
    {
        WasShutdown(this, EventArgs.Empty);
    }
    
    /// <summary>
    /// Called when [activate].
    /// </summary>
    protected virtual void OnActivate()
    {
        Activated(this, EventArgs.Empty);
    }
    
    /// <summary>
    /// Called when [deactivate].
    /// </summary>
    protected virtual void OnDeactivate()
    {
        Deactivated(this, EventArgs.Empty);
    }
    
    #endregion


    3.IViewAware接口

    /// <summary>
    /// Called when the presenter's view is loaded.
    /// </summary>
    /// <param name="view">The view.</param>
    /// <param name="context">The context.</param>
    public virtual void ViewLoaded(object view, object context) {}


    Presenter为PresenterBase默认实现

    /// <summary>
        /// A base implementation of <see cref="IPresenter"/>.
        /// </summary>
        public class Presenter : PresenterBase
        {
            /// <summary>
            /// Initializes this instance.
            /// </summary>
            public override void Initialize()
            {
                if(!IsInitialized)
                {
                    OnInitialize();
                    IsInitialized = true;
                }
            }
    
            /// <summary>
            /// Shutdowns this instance.
            /// </summary>
            public override void Shutdown()
            {
                OnShutdown();
            }
    
            /// <summary>
            /// Activates this instance.
            /// </summary>
            public override void Activate()
            {
                if(!IsActive)
                {
                    OnActivate();
                    IsActive = true;
                }
            }
    
            /// <summary>
            /// Deactivates this instance.
            /// </summary>
            public override void Deactivate()
            {
                if(IsActive)
                {
                    OnDeactivate();
                    IsActive = false;
                }
            }
        }

    到此为止,Presenter本身定义了方法与事件,但并不参与生命流程的制定.
  • 相关阅读:
    ajax请求传参数复杂对象list,后端springmvc接收参数
    SpringBoot热部署简介
    lucene 初探
    学生管理系统导包
    tomcat加入系统服务+开机自启
    sql like模糊查询的条件拼接
    SSHDemo
    Spring在web开发中的应用
    Spring的Bean内部方法调用无法使用AOP切面(CacheAble注解失效)
    dwz tree组件 取得所选择的值
  • 原文地址:https://www.cnblogs.com/Clingingboy/p/1633915.html
Copyright © 2011-2022 走看看