如何判断某个事件已经绑定了某个事件处理程序?
//为Button1绑定一个事件处理程序
Button btn = new Button();
btn.Click += new
EventHandler(button2_Click);
//获取Button类定义的所有事件的信息
PropertyInfo pi =
(typeof(Button)).GetProperty("Events", BindingFlags.Instance |
BindingFlags.NonPublic);
//获取Button对象btn的事件处理程序列表
EventHandlerList ehl =
(EventHandlerList)pi.GetValue(btn,
null);
//获取Control类Click事件的字段信息
FieldInfo fieldInfo =
(typeof(Control)).GetField("EventClick", BindingFlags.Static |
BindingFlags.NonPublic);
//用获取的Click事件的字段信息,去匹配btn对象的事件处理程序列表,获取btn对象Click事件的委托对象
//事件使用委托定义的,C#中的委托时多播委托,可以绑定多个事件处理程序,当事件发生时,这些事件处理程序被依次执行
//因此Delegate对象,有一个GetInvocationList方法,用来获取这个委托已经绑定的所有事件处理程序
Delegate
d = ehl[fieldInfo.GetValue(null)];
foreach (Delegate del in d.GetInvocationList())
{
//判断一下某个事件处理程序是否已经被绑定到Click事件上
Console.WriteLine(del.Method.Name ==
"button1_Click");
}
private void button1_Click(object sender, EventArgs e)
{
MessageBox.Show("Hello,button1_Click");
}
private void button2_Click(object sender, EventArgs e)
{
MessageBox.Show("Hello,button2_Click");
}
Button btn = new Button();
btn.Click += new
EventHandler(button2_Click);
//获取Button类定义的所有事件的信息
PropertyInfo pi =
(typeof(Button)).GetProperty("Events", BindingFlags.Instance |
BindingFlags.NonPublic);
//获取Button对象btn的事件处理程序列表
EventHandlerList ehl =
(EventHandlerList)pi.GetValue(btn,
null);
//获取Control类Click事件的字段信息
FieldInfo fieldInfo =
(typeof(Control)).GetField("EventClick", BindingFlags.Static |
BindingFlags.NonPublic);
//用获取的Click事件的字段信息,去匹配btn对象的事件处理程序列表,获取btn对象Click事件的委托对象
//事件使用委托定义的,C#中的委托时多播委托,可以绑定多个事件处理程序,当事件发生时,这些事件处理程序被依次执行
//因此Delegate对象,有一个GetInvocationList方法,用来获取这个委托已经绑定的所有事件处理程序
Delegate
d = ehl[fieldInfo.GetValue(null)];
foreach (Delegate del in d.GetInvocationList())
{
//判断一下某个事件处理程序是否已经被绑定到Click事件上
Console.WriteLine(del.Method.Name ==
"button1_Click");
}
private void button1_Click(object sender, EventArgs e)
{
MessageBox.Show("Hello,button1_Click");
}
private void button2_Click(object sender, EventArgs e)
{
MessageBox.Show("Hello,button2_Click");
}