Hi,
I am trying ot raise a MouseLeftButtonDownEvent by bubbling it up the Visual tree with the following code.
MouseButtonEventArgs args = new MouseButtonEventArgs(Mouse.PrimaryDevice,0, MouseButton.Left);
args.RoutedEvent = UIElement.MouseLeftButtonDownEvent;
args.Source = this;
RaiseEvent(args);
For some reason the higher level components are not receiving this bubbled event. Am I overlooking something or is it not possible to raise this Mouse event