vote up 1 vote down star
1

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?

flag

74% accept rate

2 Answers

vote up 2 vote down check

Try this to get all events on the Button type... You can substitute a different type.

RoutedEvent[] events = EventManager.GetRoutedEventsForOwner(typeof(Button));

foreach (RoutedEvent e in events)
   elem.AddHandler(e, handler);

You can also substitute the following to get ALL routed events for ALL types, but that would be quite a list!

RoutedEvent[] events = EventManager.GetRoutedEvents();
link|flag
vote up 0 vote down

You can use the RegisterClassHandler method of EventManager to staticly listen to all elements at once :)

EventManager.RegisterClassHandler(typeof(your class), Button.ClickEvent, new RoutedEventHandler(OnButtonClick));

static void OnButtonClick(object sender, RoutedEventArgs e)
{
    //Do awesome stuff with the button click
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.