views:

9

answers:

1

As you can see here, I can't use reflection to get the multicast delegates of the private fields behind these FrameworkElement events because they aren't field-like. So how to do it?

+1  A: 

Hey,

Please try this:

yourControl.RaiseEvent(new RoutedEventArgs(FrameworkElement.LoadedEvent));

It should work! :)