如何从FrameworkElement引发Onload / OnUnload事件以进行单元测试?

时间:2010-09-01 13:25:28

标签: wpf unit-testing events reflection delegates

正如您所看到的here,我无法使用反射来获取这些FrameworkElement事件背后的私有字段的多播委托,因为它们不是字段式的。那怎么办呢?

1 个答案:

答案 0 :(得分:12)

请试试这个:

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

它应该工作! :)