//获取TextBox类定义的所有事件的信息 PropertyInfo pi = (typeof(TextBox)).GetProperty("Events", BindingFlags.Instance | BindingFlags.NonPublic); //获取TextBox对象textBox1的事件处理程序列表 EventHandlerList ehl = (EventHandlerList)pi.GetValue(this.textBox1, null); //获取Control类TextChanged事件的字段信息 FieldInfo fieldInfo = (typeof(Control)).GetField("EventText", BindingFlags.Static | BindingFlags.NonPublic); //用获取的Click事件的字段信息,去匹配textBox1对象的事件处理程序列表,获取textBox1对象TextChanged事件的委托对象 //事件使用委托定义的,C#中的委托时多播委托,可以绑定多个事件处理程序,当事件发生时,这些事件处理程序被依次执行 //因此Delegate对象,有一个GetInvocationList方法,用来获取这个委托已经绑定的所有事件处理程序 Delegate d = ehl[fieldInfo.GetValue(null)];
时间: 2024-10-29 04:04:25