Я использую Framework ElementFactory для создания изображения в DataTemplate.При попытке обработать событие MouseDown для типа изображения выдается исключение: «Тип обработчика недопустим.
Как добавить MouseDownEventHandler для FrameworkElementFactory типа Image
FrameworkElementFactory imageSecondaryContent = new FrameworkElementFactory(typeof(Image));
imageSecondaryContent.SetValue(Image.WidthProperty, imgWidth);
imageSecondaryContent.SetValue(Image.VisibilityProperty, Visibility.Hidden);
imageSecondaryContent.Name = imageName;
Binding tmpBindingSecondaryContent = new Binding();
tmpBindingSecondaryContent.Source = IconLibary.GetUri(IconStore.ExclaminationPoint);
imageSecondaryContent.SetBinding(Image.SourceProperty, tmpBindingSecondaryContent);
imageSecondaryContent.AddHandler(Image.MouseDownEvent, new RoutedEventHandler(Test));
Последняя строка выдает исключение. Пожалуйста, помогите