I think only one handler can assign to one control's event? BTW, I don't
know much about C# yet, can you assign more than one handler to one
control's event?
I think only one handler can assign to one control's event? BTW, I don't
know much about C# yet, can you assign more than one handler to one
control's event?
Not from outside the class. From inside the class, assuming you've
implemented the event with a delegate (which you do by default with the
event keyword) you can use Delegate.GetInvocationList.
Not from outside the class. From inside the class, assuming you've
implemented the event with a delegate (which you do by default with the
event keyword) you can use Delegate.GetInvocationList.
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.