Is there a way to find all event handlers for a Windows Forms control? Specifically statically defined event handlers?
Windows Forms controls use an EventHandlerList property called Events to hold event handlers so you could iterate that collection. To determine which subscribed handlers are static, you will need to use reflection.