I have a button control and I'd need to remove all the event handlers attached to its Click event.
How would that be possible?
Button button = GetButton();
button.Click.RemoveAllEventHandlers();
Many thanks,
|
I have a button control and I'd need to remove all the event handlers attached to its Click event. How would that be possible?
Many thanks, |
|||||||
|
|
You can't, basically - at least not without reflection and a lot of grubbiness. Events are strictly "subscribe, unsubscribe" - you can't unsubscribe someone else's handler, any more than you can change someone else's reference to an object. |
|||||||||||||
|
|
I found this answer here on StackOverflow: How to remove all event handlers from a control
Which the origional poster found here: |
|||||||||||
|
The below is a helpful utility method for removing all event handlers subscribed to a routed event on a given element. You can trivially convert this to an extension method if you like.
You could then easily call this utility method for your button's
|
|||
|
|
|
I had the null error issue with the code Jamie Dixon posted to take in to account not having a Click event.
Then a small change and it should be for any event.
I imagine this could be made better but it works for my current need. Hope this is useful for someone. |
|||
|
|
|
Just wanted to expand on Douglas' routine slightly, which I liked very much. I found I needed to add the extra null check to eventHandlersStore to handle any cases where the element passed didn't have any events attached yet.
|
|||
|
|