UIElement3D.MouseEnter Event

Definition

Occurs when the mouse pointer enters the bounds of this element.

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

Event Type

Implements

Remarks

MouseEnter is a Routed Events Overview that uses the direct event handling routing strategy. Direct routed events are not raised along a route; instead, they are handled in the same element where they are raised.

Although MouseEnter tracks when the mouse pointer enters the bounds of an element, this event more literally reports that the IsMouseOver property value has changed from false to true on this element.

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

MouseEnter is introduced in the .NET Framework version 3.5. For more information, see Versions and Dependencies.

Routed Event Information

Identifier field MouseEnterEvent
Routing strategy Direct
Delegate MouseEventHandler
  • Override OnMouseEnter to implement class handling for this event in derived classes.

Applies to

See also