UIElement.PreviewMouseMove Event

Definition

Occurs when the mouse pointer moves while the mouse pointer is over this element.

public:
 virtual event System::Windows::Input::MouseEventHandler ^ PreviewMouseMove;
public event System.Windows.Input.MouseEventHandler PreviewMouseMove;
member this.PreviewMouseMove : System.Windows.Input.MouseEventHandler 
Public Custom Event PreviewMouseMove As MouseEventHandler 

Event Type

Implements

Remarks

This event occurs both when the mouse pointer first enters into the element bounds, and also when the mouse pointer moves while still remaining within the element bounds.

This event creates an alias for the Mouse.PreviewMouseMove attached event for this class, so that PreviewMouseMove is part of the class members list when UIElement is inherited as a base element. Event handlers that are attached to the PreviewMouseMove event are attached to the underlying Mouse.PreviewMouseMove attached event and receive the same event data instance.

Routed Event Information

Identifier field PreviewMouseMoveEvent
Routing strategy Tunneling
Delegate MouseEventHandler
  • The corresponding bubbling event is MouseMove.

  • Override OnPreviewMouseMove to implement class handling for this event in derived classes.

Applies to