怎么判断事件是否已订阅某一方法
Posted sinceret
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么判断事件是否已订阅某一方法相关的知识,希望对你有一定的参考价值。
1用反射
PropertyInfo pi = (typeof(Button)).GetProperty("Events", BindingFlags.Instance | BindingFlags.NonPublic); EventHandlerList ehl = (EventHandlerList)pi.GetValue(btnHardInfo, null);//这是你的Button FieldInfo fi = (typeof(Control)).GetField("EventClick", BindingFlags.Static | BindingFlags.NonPublic); Delegate d = ehl[fi.GetValue(null)]; if (d != null) System.Delegate[] dels = d.GetInvocationList(); for (int i = 0; i < dels.Length; i++) MsgBox.Items.Add(dels[i].Method.Name);//这里会输出所有方法名称
2只要在加事件之前先-=就可以了
button2.Click -= new EventHandler(button2_Click);
button2.Click += new EventHandler(button2_Click);
以上是关于怎么判断事件是否已订阅某一方法的主要内容,如果未能解决你的问题,请参考以下文章
EventBus手写实现事件通信框架 ( 订阅类-订阅方法缓存集合 | 事件类型-订阅者集合 | 订阅对象-事件类型集合 )