I want to fake manipulation (or touch) of events with the mouse / keyboard. When I try to raise events using:
RoutedEventArgs e = new RoutedEventArgs(ManipulationStartedEvent,this);
RaiseEvent(e);
Gives me the error "Unable to convert RoutedEventArgsto ManipulationStartedEventArgs, and trying to create a new one ManipulationStartedEventArgswill result in an error because there are no constructors for ManipulationStartedEventArgs.
Can this be done?
source
share