How to remove all event handlers from a control - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T01:05:46Z http://stackoverflow.com/feeds/question/91778 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/91778/how-to-remove-all-event-handlers-from-a-control 11 How to remove all event handlers from a control Carrick 2008-09-18T11:34:23Z 2009-10-20T21:11:20Z <p>To create a new event handler on a control you can do this</p> <pre><code>c.Click += new EventHandler(mainFormButton_Click); </code></pre> <p>or this</p> <pre><code>c.Click += mainFormButton_Click; </code></pre> <p>and to remove an event handler you can do this</p> <pre><code>c.Click -= mainFormButton_Click; </code></pre> <p>But how do you remove all event handlers from a control?</p> http://stackoverflow.com/questions/91778/how-to-remove-all-event-handlers-from-a-control/91803#91803 3 Answer by smink for How to remove all event handlers from a control smink 2008-09-18T11:40:59Z 2008-09-18T11:48:28Z <p>From <a href="http://bytes.com/forum/thread274921.html" rel="nofollow">http://bytes.com/forum/thread274921.html</a></p> <blockquote> <p>Directly no, in large part because you cannot simply set the event to null.</p> <p>Indirectly, you could make the actual event private and create a property around it that tracks all of the delegates being added/subtracted to it.</p> <p>Take the following:</p> <pre><code>ArrayList delegates = new ArrayList(); private event EventHandler MyRealEvent; public event EventHandler MyEvent { add { MyRealEvent += value; delegates.Add(value); } remove { MyRealEvent -= value; delegates.Remove(value); } } public void RemoveAllEvents() { foreach(EventHandler eh in delegates) { MyRealEvent -= eh; } delegates.Clear(); } </code></pre> </blockquote> http://stackoverflow.com/questions/91778/how-to-remove-all-event-handlers-from-a-control/91808#91808 0 Answer by aku for How to remove all event handlers from a control aku 2008-09-18T11:43:29Z 2008-09-18T11:43:29Z <p>@<a href="#91803" rel="nofollow">Jorge Ferreira</a>,</p> <p>It's a good practice to provide link to the <a href="http://bytes.com/forum/thread274921.html" rel="nofollow">resource</a> from which you copy-pasted answer.</p> <p>Something like:</p> <pre><code>&lt;Resource name&gt;: Quoted text... </code></pre> http://stackoverflow.com/questions/91778/how-to-remove-all-event-handlers-from-a-control/91820#91820 1 Answer by Gishu for How to remove all event handlers from a control Gishu 2008-09-18T11:45:00Z 2008-09-18T11:45:00Z <p>If you <strong>reaallly</strong> have to do this... it'll take Reflection and quite some time to do this. Eventhandlers are managed in a Event to Delegate Map inside a Control. You would need to</p> <ul> <li>reflect and obtain this map in the Control instance.</li> <li>iterate for each event, get the Delegate <ul> <li>each delegate in turn could be a chained series of event handlers. So call obControl.RemoveHandler(event, handler)</li> </ul></li> </ul> <p>In short, A lot of work. Possible in theory... never tried something like this.</p> <p>See if you can have better control/discipline over the subscribe-unsubscribe phase for the control.</p> http://stackoverflow.com/questions/91778/how-to-remove-all-event-handlers-from-a-control/91853#91853 10 Answer by xsl for How to remove all event handlers from a control xsl 2008-09-18T11:53:15Z 2008-09-18T11:53:15Z <p>I found a solution on the <a href="http://social.msdn.microsoft.com/Forums/en-US/csharpgeneral/thread/576f69e7-55aa-4574-8d31-417422954689/" rel="nofollow">MSDN Forums</a>. The sample code below will remove all <code>Click</code> events from <code>button1</code>.</p> <pre><code>public partial class Form1 : Form { public Form1() { InitializeComponent(); button1.Click += button1_Click; button1.Click += button1_Click2; button2.Click += button2_Click; } private void button1_Click(object sender, EventArgs e) { MessageBox.Show("Hello"); } private void button1_Click2(object sender, EventArgs e) { MessageBox.Show("World"); } private void button2_Click(object sender, EventArgs e) { RemoveClickEvent(button1); } void RemoveClickEvent(Button b) { FieldInfo f1 = typeof(Control).GetField("EventClick", BindingFlags.Static | BindingFlags.NonPublic); object obj = f1.GetValue(b); PropertyInfo pi = button1.GetType().GetProperty("Events", BindingFlags.NonPublic | BindingFlags.Instance); EventHandlerList list = (EventHandlerList)pi.GetValue(b, null); list.RemoveHandler(obj, list[obj]); } } } </code></pre> http://stackoverflow.com/questions/91778/how-to-remove-all-event-handlers-from-a-control/1032221#1032221 1 Answer by MdMx for How to remove all event handlers from a control MdMx 2009-06-23T12:22:52Z 2009-06-23T12:22:52Z <p>It does no harm to delete non-existing event handler. So if you know what handlers there might be, you can simply delete all of them. I just had similar case. This may help in some cases.</p> <p>Like:</p> <pre><code>// add handlers... if (something) { c.Click += DoesSomething; } else { c.Click += DoesSomethingElse; } // remove handlers... c.Click -= DoesSomething; c.Click -= DoesSomethingElse; </code></pre> http://stackoverflow.com/questions/91778/how-to-remove-all-event-handlers-from-a-control/1597332#1597332 0 Answer by SwDevMan81 for How to remove all event handlers from a control SwDevMan81 2009-10-20T21:11:20Z 2009-10-20T21:11:20Z <p>I just found <a href="http://social.msdn.microsoft.com/Forums/en-US/csharpgeneral/thread/c873d460-2f7d-41f6-8149-3055a9dd5e7a" rel="nofollow">this</a> reference and thought I would add it. It will remove all events from a control:</p> <pre><code>namespace CMessWin05 { public class EventSuppressor { Control _source; EventHandlerList _sourceEventHandlerList; FieldInfo _headFI; Dictionary&lt;object, Delegate[]&gt; _handlers; PropertyInfo _sourceEventsInfo; Type _eventHandlerListType; Type _sourceType; public EventSuppressor(Control control) { if (control == null) throw new ArgumentNullException("control", "An instance of a control must be provided."); _source = control; _sourceType = _source.GetType(); _sourceEventsInfo = _sourceType.GetProperty("Events", BindingFlags.Instance | BindingFlags.NonPublic); _sourceEventHandlerList = (EventHandlerList)_sourceEventsInfo.GetValue(_source, null); _eventHandlerListType = _sourceEventHandlerList.GetType(); _headFI = _eventHandlerListType.GetField("head", BindingFlags.Instance | BindingFlags.NonPublic); } private void BuildList() { _handlers = new Dictionary&lt;object, Delegate[]&gt;(); object head = _headFI.GetValue(_sourceEventHandlerList); if (head != null) { Type listEntryType = head.GetType(); FieldInfo delegateFI = listEntryType.GetField("handler", BindingFlags.Instance | BindingFlags.NonPublic); FieldInfo keyFI = listEntryType.GetField("key", BindingFlags.Instance | BindingFlags.NonPublic); FieldInfo nextFI = listEntryType.GetField("next", BindingFlags.Instance | BindingFlags.NonPublic); BuildListWalk(head, delegateFI, keyFI, nextFI); } } private void BuildListWalk(object entry, FieldInfo delegateFI, FieldInfo keyFI, FieldInfo nextFI) { if (entry != null) { Delegate dele = (Delegate)delegateFI.GetValue(entry); object key = keyFI.GetValue(entry); object next = nextFI.GetValue(entry); Delegate[] listeners = dele.GetInvocationList(); if(listeners != null &amp;&amp; listeners.Length &gt; 0) _handlers.Add(key, listeners); if (next != null) { BuildListWalk(next, delegateFI, keyFI, nextFI); } } } public void Resume() { if (_handlers == null) throw new ApplicationException("Events have not been suppressed."); foreach (KeyValuePair&lt;object, Delegate[]&gt; pair in _handlers) { for (int x = 0; x &lt; pair.Value.Length; x++) _sourceEventHandlerList.AddHandler(pair.Key, pair.Value[x]); } _handlers = null; } public void Suppress() { if (_handlers != null) throw new ApplicationException("Events are already being suppressed."); BuildList(); foreach (KeyValuePair&lt;object, Delegate[]&gt; pair in _handlers) { for (int x = pair.Value.Length - 1; x &gt;= 0; x--) _sourceEventHandlerList.RemoveHandler(pair.Key, pair.Value[x]); } } } } </code></pre>