V
Vince
I'm writing a framework component, and I would like to be able to
determine if a particular event has been delegated or not.
By event delegation, I mean:
control.event += handler (method);
I want to know if the event has already been delegated or not. Even
though events use the "+=" syntax, they're not true indexers, so they
don't have a Count.
Any ideas?
TIA,
Vince
determine if a particular event has been delegated or not.
By event delegation, I mean:
control.event += handler (method);
I want to know if the event has already been delegated or not. Even
though events use the "+=" syntax, they're not true indexers, so they
don't have a Count.
Any ideas?
TIA,
Vince