Hello,
How can I get the list of all the event handlers (delegates) associated with the Click event on a RadTileElement in Panorama control using reflection?
I should implement a proxy class that add or remove handlers on Click event.
Something like this:
I could do it with normal Controls but not with RadTileElement in Panorama.
Thank you in advance,
Raniere
How can I get the list of all the event handlers (delegates) associated with the Click event on a RadTileElement in Panorama control using reflection?
I should implement a proxy class that add or remove handlers on Click event.
Something like this:
private event EventHandler _eventProxy;...var _handlers = GetEventHandlers(radTileElement, "Click");foreach (var handler in _handlers){ _eventProxy += (EventHandler)handler;}I could do it with normal Controls but not with RadTileElement in Panorama.
Thank you in advance,
Raniere