ContentElement.MouseMove Event

Definition

Occurs when the mouse pointer moves while over this element.

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

Event Type

Implements

Remarks

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

Routed Event Information

Identifier field MouseMoveEvent
Routing strategy Bubbling
Delegate MouseEventHandler
  • The corresponding tunneling event is PreviewMouseMove.

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

Applies to

See also