I am adding dynamically controls to page by using LoadControl and Controls.Add. I need somehow to wrap Init and Load event handlers of this loaded controls into my code. So it should be such order of events SomeMyCode() -> Control.Init() -> AnotherMyCode() and the same for Load SomeMyCode() -> Control.Load() -> AnotherMyCode().
My idea was to Get List of Control's event handlers for Init and Load events and add first and last event handers with code I should to run. But I cannot figure out how to do this.
|
|
|
||
|
|
|
BTW why I cannot get field "EventLoad"? I can see it in Framework sources but cannot get it :-(
|
||||||
|
|
|
You cannot forcibly inject an event handler in front of other handlers already subscribed to an event. If you need method A to be called first, then you'll need to subscribe A first. Re your comment, that is incredibly hacky. First, you can't even rely on an event having a delegate-field backer; it can be an Second (and more important), it breaks every rule of encapsulation. In general, if you want to be first, the best approach is to override the |
||||||||
|
|
|
Here is draft of working solution:
} Question is closed. Thank you all for answers! |
||
|
|
