UIElement3D.MouseMove Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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 UIElement3D 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.