码迷,mamicode.com
首页 > 其他好文 > 详细

C#反射调用其它DLL的委托事件 传值

时间:2014-09-16 09:12:50      阅读:325      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   os   ar   for   文件   div   art   

bubuko.com,布布扣
 void Test2_Click(object sender, RoutedEventArgs e)
        {
            var item = (MenuItem)sender;
            string path = @Environment.CurrentDirectory + "\\";
            Plugin plugin = ApplicationSharedData.Plugins[item.Header.ToString()];

            ApplicationSharedData.ModulEventCommunication(this, "TestEvent", "DeleBindData", path, plugin, new object[] { "参数1", "参数2","" });
            //注 在反射TestEvent 时候 ,TestEvent有几个参数 那么S_TestEvent 也有几个参数。
            //不然会抛出异常信息,TargetParameterCountException 参数的个数不同
        }


        private static void DeleBindData(string msg, string info,string tb)
        {
            _textbox.Text = tb;
        }
bubuko.com,布布扣

C#反射调用其它DLL的委托事件 传值

标签:blog   http   io   os   ar   for   文件   div   art   

原文地址:http://www.cnblogs.com/dlbird/p/3974132.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!