I would like to hook for all available element events in one call. Some thing like this:
elem.AddHandler(AnyRoutedEvent, (RoutedEventHandler)handler)
How can I do this?
|
1
|
I would like to hook for all available element events in one call. Some thing like this:
How can I do this?
|
||
|
|
|
|
Try this to get all events on the Button type... You can substitute a different type.
You can also substitute the following to get ALL routed events for ALL types, but that would be quite a list!
|
||
|
|
|
|
You can use the RegisterClassHandler method of EventManager to staticly listen to all elements at once :)
|
||
|
|