Possible Duplicate:
Is it possible to “steal” an event handler from one control and give it to another?
Is there a way to get references of the event handlers from the event?
For example:
EventHandler evt = btn.Click; // or another way ?
(Here the EventHandler
is the delegate and Click
is an event of Button)