标签: wpf unit-testing events reflection delegates
正如您所看到的here,我无法使用反射来获取这些FrameworkElement事件背后的私有字段的多播委托,因为它们不是字段式的。那怎么办呢?
答案 0 :(得分:12)
请试试这个:
yourControl.RaiseEvent(new RoutedEventArgs(FrameworkElement.LoadedEvent));
它应该工作! :)