.... clear all delegates assigned to an event.
this.button1.cl ick += delegate{...};
this.button1.cl ick += new EventHandlet{th is.OnClick(...) ;}
how to clear a "click" events or suspend
its execution on click?
this.button1.cl ick += delegate{...};
this.button1.cl ick += new EventHandlet{th is.OnClick(...) ;}
how to clear a "click" events or suspend
its execution on click?
Comment