をフィールド情報を返します。
はあなたが一時的なすべてのイベントを無効にしたいとしましょう
:あなたはこのようにそれを呼び出すことができます
static Delegate[] DisableEvents(this Control ctrl, string eventName)
{
PropertyInfo propertyInfo = ctrl.GetType().GetProperty("Events", BindingFlags.NonPublic | BindingFlags.Static | BindingFlags.Instance);
EventHandlerList eventHandlerList = propertyInfo.GetValue(ctrl, new object[] { }) as EventHandlerList;
FieldInfo fieldInfo = typeof(Control).GetField("Event"+eventName, BindingFlags.NonPublic | BindingFlags.Static);
object eventKey = fieldInfo.GetValue(ctrl);
var eventHandler = eventHandlerList[eventKey] as Delegate;
Delegate[] invocationList = eventHandler.GetInvocationList();
foreach (EventHandler item in invocationList)
{
ctrl.GetType().GetEvent(eventName).RemoveEventHandler(ctrl, item);
}
return invocationList;
}|
:、あなたはこのようなメソッドを作成することができます
var events = textbox1.DisableEvents("GotFocus")
もう一度追加したい場合は、イベントリストを確認するだけです。
可能性のある複製[反射を使ってイベントの基になる代理人のリストを取得するにはどうすればいいですか?](http://stackoverflow.com/questions/6501288/how-can-i -get-a-below-delegate-from-an-event-using-reflection) – Heinzi