EaBIM一直以来积极响应国家“十二五”推进建筑业信息化的号召,对建筑领域的信息技术开展深入技术交流和探讨!致力于打造“BIM-建筑师-生态技术”三位一体综合资源交流共享平台,希望为BIM与可持续设计理念及技术的普及做出微小的贡献!!!

EaBIM

 找回密码
 注册

QQ登录

只需一步,快速开始

扫一扫,访问微社区

搜索
查看: 620|回复: 0
打印 上一主题 下一主题

[架构模式] C#实现插件式开发的一个Demo分享

[复制链接]

1514

主题

7465

帖子

1万

积分

admin

Rank: 10Rank: 10Rank: 10Rank: 10Rank: 10Rank: 10Rank: 10Rank: 10Rank: 10Rank: 10

积分
12406

社区QQ达人

跳转到指定楼层
楼主
发表于 2014-1-10 10:55:28 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
winform程序,很多时候都需要用到插件式的,所以本人做了一个Demo,思路跟网上思路基本一致,现在共享出来如有需要的朋友可以下载。
申明:部分代码来源于网上,当然思路也是,呵呵
原理很简单:
一:定义插件接口
二:实现插件接口并建立不同工项目,使其在生成时生成不同的DLL
三:主程序运行时根据接口名利用反射对插件目录的DLL进行加载,加载完成后便可以使用插件接口定义的方法或属性了。
下面上几张图,有兴趣的朋友可以先看看,觉得值得一看的朋友可以下载。
项目结构:

                               
登录/注册后可看大图
DefaultPlugin,PosPlugin两个项目均为插件,均实现了Iplugin接可
Iplugin接口using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Drawing;
using System.Windows.Forms;

namespacepublicinterface Iplugin
    {

        PluginInfoAttribute PluginInfo
        { get; setboolgetset;
        }

        Image ModulePicture
        {
get;
        }

        Image ModulePictureEnter
        {
get;
        }

        Image ModulePictureClick
        {
getstringget;
        }


        Dictionary<string, EventHandler>get;
        }

        ILoadForm FormLoader
        {
getset



用于加载插件的类 PluginLoaderusing System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Reflection;
using System.IO;
using System.Windows.Forms;
using System.Collections;

namespacepublicstaticclasspublicstatic List<Iplugin> plugins =new List<Iplugin>privatestatic ArrayList piProperties =newprivatestaticbool IsValidPlugin(Type t)
        {
bool ret =false;
            Type[] interfaces =foreach( Type theInterface inif (theInterface.FullName =="WinDemo.Core.Iplugin")
                {
                    ret =truebreak;
                }
            }
returnpublicstaticvoidstring[] files = Directory.GetFiles(Application.StartupPath +"\\plugin\\"int i =0;
            PluginInfoAttribute typeAttribute =newforeach (string file instring ext = file.Substring(file.LastIndexOf("."if (ext !=".dll") continuetry
                {
                    Assembly tmp = Assembly.LoadFile(file);
                    Type[] types =bool ok =falseforeach (Type t inif (IsValidPlugin(t))
                        {
                            Iplugin plugin = (Iplugin)tmp.CreateInstance(t.FullName);
                            plugins.Add(plugin);
object[] attbs = t.GetCustomAttributes(typeAttribute.GetType(), false);
                            PluginInfoAttribute attribute =nullforeach (object attb in attbs)
                            {
if (attb is PluginInfoAttribute)
                                {
                                    attribute = (PluginInfoAttribute)attb;
                                    attribute.Index = i;
                                    i++;
                                    ok =truebreak;
                                }
                            }

if (attribute !=null)
                            {
                                piProperties.Add(attribute);
                                plugin.PluginInfo = attribute;
                            }
elsethrownew Exception("未定义插件属性"if (ok) break;
                        }
                }
catch (Exception err)
                {
throw err;
                }
            }
            plugins.Sort((p1, p2) =>return p2.PluginInfo.Index - p1.PluginInfo.Index;
            });
        }
    }
}



Iplugin的实现类PosPlugin类using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Drawing;
using WinDemo.Core;
usingnamespace DefaultPlugin
{
    [PluginInfo("Default","1.0","XH","www.cnporter.com",true,2publicclass Default : WinDemo.Core.Iplugin
    {
private Dictionary<string, EventHandler> _ChildNodes =new Dictionary<string, EventHandler>private LeftNav frmLeftNav =newpublicstaticpublic Default()
        {

            _ChildNodes.Add("菜单五", (sender,e) =>
            {
                MessageBox.Show(sender.ToString());
            });
            _ChildNodes.Add("菜单四", (sender, e) =>
            {
                MessageBox.Show(sender.ToString());
            });
            _ChildNodes.Add("菜单三", (sender, e) =>
            {
                MessageBox.Show(sender.ToString());
            });
            _ChildNodes.Add("菜单二", (sender, e) =>
            {
                MessageBox.Show(sender.ToString());
            });
            _ChildNodes.Add("菜单一", (sender, e) =>
            {
                FormLoader.LoadNavFrm(frmLeftNav);
            });
        }



public Image ModulePicture
        {
getreturn ((System.Drawing.Image)(ImageResource.Index));
            }
        }

public Image ModulePictureEnter
        {
getreturn ((System.Drawing.Image)(ImageResource.IndexEnter));
            }
        }

public Image ModulePictureClick
        {
getreturn ((System.Drawing.Image)(ImageResource.IndexClick));
            }
        }

publicstringgetreturn"首页"public Dictionary<string, EventHandler>getreturn _ChildNodes;
            }
        }




publicboolgetsetpublic ILoadForm FormLoader
        {
getreturnset
            {
                Formloader = value;
            }
        }



public PluginInfoAttribute PluginInfo
        {
getset


此图现在有两个插件
运行效果如下

                               
登录/注册后可看大图

分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友 微信微信
收藏收藏 转播转播 分享分享 分享淘帖 支持支持 反对反对
工作时间:工作日的9:00-12:00/13:30-18:00,节假日不在线,请勿留言
*滑块验证:
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|EaBIM网 ( 苏ICP备2020058923号-1  苏公网安备32011502011255号

GMT+8, 2024-11-27 14:51

Powered by Discuz! X3.2 Licensed

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表